commit | 56a8999bf1eab6460df01b9ea926fe4629a2218b | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Tue Feb 26 03:44:25 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Tue Feb 26 03:44:25 2008 +0000 |
tree | aec6e0fd1c1cfdc3f7bfe611a9373dd2f9ecd5b5 | |
parent | a9ba5ccd88ed3ec3342603f9d5f5650691f239d1 [diff] [blame] |
Fixed inverted condition. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47590 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Analysis/GRExprEngine.cpp b/Analysis/GRExprEngine.cpp index fcbe4cc..cc1e899 100644 --- a/Analysis/GRExprEngine.cpp +++ b/Analysis/GRExprEngine.cpp
@@ -582,7 +582,7 @@ NodeSet DstTmp; - if (!isa<DeclRefExpr>(Ex)) + if (isa<DeclRefExpr>(Ex)) DstTmp.Add(Pred); else Visit(Ex, Pred, DstTmp);