Use the correct predecessor node.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58446 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp
index 935fd30..c8d4722 100644
--- a/lib/Analysis/GRExprEngine.cpp
+++ b/lib/Analysis/GRExprEngine.cpp
@@ -1678,7 +1678,7 @@
           SVal V = NonLoc::MakeCompoundVal(T, NewVals, getBasicVals());
 
           // Make final state and node.
-          MakeNode(Dst, E, Pred,  BindExpr(state, E, V));
+          MakeNode(Dst, E, *NI, BindExpr(state, E, V));
         }
         else {
           // Still some initializer values to go.  Push them onto the worklist.