From: Ted Kremenek Date: Wed, 23 Dec 2009 01:25:13 +0000 (+0000) Subject: Teach GRExprEngine::VisitLValue that we don't handle CXXZeroInitValueExprs yet. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7931c93a0a72347f0433a2a270525d3a5c61c9ba;p=clang Teach GRExprEngine::VisitLValue that we don't handle CXXZeroInitValueExprs yet. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91970 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index c26867bf54..a0f110ef1a 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -754,7 +754,8 @@ void GRExprEngine::VisitLValue(Expr* Ex, ExplodedNode* Pred, switch (Ex->getStmtClass()) { // C++ stuff we don't support yet. - case Stmt::CXXMemberCallExprClass: { + case Stmt::CXXMemberCallExprClass: + case Stmt::CXXZeroInitValueExprClass: { SaveAndRestore OldSink(Builder->BuildSinks); Builder->BuildSinks = true; MakeNode(Dst, Ex, Pred, GetState(Pred));