Fix typo spotted by MSVC.

GRExprEngine.cpp(1348) : warning C4305: 'argument' : truncation from 'clang::ProgramPoint::Kind' to 'bool'

llvm-svn: 92154
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp
index 4fafcf5..11f8214 100644
--- a/clang/lib/Analysis/GRExprEngine.cpp
+++ b/clang/lib/Analysis/GRExprEngine.cpp
@@ -1344,8 +1344,8 @@
           V = UnknownVal();
       }
       
-      MakeNode(Dst, Ex, Pred, state->BindExpr(Ex, V,
-                                              ProgramPoint::PostLValueKind));
+      MakeNode(Dst, Ex, Pred, state->BindExpr(Ex, V),
+               ProgramPoint::PostLValueKind);
     }
     else
       EvalLoad(Dst, Ex, Pred, state, V);