зеркало из https://github.com/microsoft/clang-1.git
Fixed inverted condition.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47590 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
f4e15fc4c1
Коммит
018c15fa98
|
@ -582,7 +582,7 @@ void GRExprEngine::VisitDeref(UnaryOperator* U, NodeTy* Pred, NodeSet& Dst) {
|
|||
|
||||
NodeSet DstTmp;
|
||||
|
||||
if (!isa<DeclRefExpr>(Ex))
|
||||
if (isa<DeclRefExpr>(Ex))
|
||||
DstTmp.Add(Pred);
|
||||
else
|
||||
Visit(Ex, Pred, DstTmp);
|
||||
|
|
Загрузка…
Ссылка в новой задаче