From 9c825c3f77aa46c5cadaf60007598b71c6da3273 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 25 Dec 2009 09:44:02 +0000 Subject: [PATCH] Fix typo spotted by MSVC. GRExprEngine.cpp(1348) : warning C4305: 'argument' : truncation from 'clang::ProgramPoint::Kind' to 'bool' git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92154 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/GRExprEngine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 4fafcf5647..11f8214633 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/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); -- 2.40.0