diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-12-25 09:44:02 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-12-25 09:44:02 +0000 |
commit | a713b5d9a86910aeb0449c0fccd364e2edd6543e (patch) | |
tree | ae5eeaab62cb6fcdf2207fb18a741cfde7e15755 /clang/lib/Analysis/GRExprEngine.cpp | |
parent | b8841af8bd0d8edb68e295f0d9156c34afdb9d13 (diff) | |
download | bcm5719-llvm-a713b5d9a86910aeb0449c0fccd364e2edd6543e.tar.gz bcm5719-llvm-a713b5d9a86910aeb0449c0fccd364e2edd6543e.zip |
Fix typo spotted by MSVC.
GRExprEngine.cpp(1348) : warning C4305: 'argument' : truncation from 'clang::ProgramPoint::Kind' to 'bool'
llvm-svn: 92154
Diffstat (limited to 'clang/lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index 4fafcf5647b..11f82146333 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -1344,8 +1344,8 @@ void GRExprEngine::VisitCommonDeclRefExpr(Expr *Ex, const NamedDecl *D, 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); |