commit | 978b935b069e9379e554a2126a525e7b9f458f62 | [log] [tgz] |
---|---|---|
author | Zhongxing Xu <xuzhongxing@gmail.com> | Wed Apr 21 02:20:10 2010 +0000 |
committer | Zhongxing Xu <xuzhongxing@gmail.com> | Wed Apr 21 02:20:10 2010 +0000 |
tree | 25f67882722a397e80137da1f7a4a821ac3921c2 | |
parent | 6b8513829895e56a7b97e787ea74520bc626512e [diff] [blame] |
Use the right predecessor. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101981 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Checker/GRCXXExprEngine.cpp b/lib/Checker/GRCXXExprEngine.cpp index 6a1aa1b..00ac995 100644 --- a/lib/Checker/GRCXXExprEngine.cpp +++ b/lib/Checker/GRCXXExprEngine.cpp
@@ -216,7 +216,7 @@ } } state = state->BindExpr(CNE, loc::MemRegionVal(EleReg)); - MakeNode(Dst, CNE, Pred, state); + MakeNode(Dst, CNE, *I, state); } }