Fix typo spotted by MSVC.

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

llvm-svn: 92154
This commit is contained in:
Benjamin Kramer 2009-12-25 09:44:02 +00:00
parent b8841af8bd
commit a713b5d9a8
1 changed files with 2 additions and 2 deletions

View File

@ -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);