forked from OSchip/llvm-project
A series of bit-flag values should be bitwise-or'ed not logical-or'ed.
clang unreachable code warning. llvm-svn: 219916
This commit is contained in:
parent
f8a7cfad6d
commit
0060a38e7b
|
@ -1274,10 +1274,10 @@ ClangExpressionDeclMap::FindExternalVisibleDecls (NameSearchContext &context,
|
|||
{
|
||||
valobj = frame->GetValueForVariableExpressionPath(name_unique_cstr,
|
||||
eNoDynamicValues,
|
||||
StackFrame::eExpressionPathOptionCheckPtrVsMember ||
|
||||
StackFrame::eExpressionPathOptionsAllowDirectIVarAccess ||
|
||||
StackFrame::eExpressionPathOptionsNoFragileObjcIvar ||
|
||||
StackFrame::eExpressionPathOptionsNoSyntheticChildren ||
|
||||
StackFrame::eExpressionPathOptionCheckPtrVsMember |
|
||||
StackFrame::eExpressionPathOptionsAllowDirectIVarAccess |
|
||||
StackFrame::eExpressionPathOptionsNoFragileObjcIvar |
|
||||
StackFrame::eExpressionPathOptionsNoSyntheticChildren |
|
||||
StackFrame::eExpressionPathOptionsNoSyntheticArrayRange,
|
||||
var,
|
||||
err);
|
||||
|
|
Loading…
Reference in New Issue