diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-12-24 00:40:03 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-12-24 00:40:03 +0000 |
commit | fcfb503c280ed8c66d428fed911b2846c0f434fc (patch) | |
tree | 34b294ec6bda7dd1fa4c38339796b398be0a9ad4 /lib/Analysis/GRExprEngine.cpp | |
parent | 6b501ebaf172b28d6d7e1737db27f915175ad3c8 (diff) |
Teach GRExprEngine to handle the initialization of the condition variable of a SwitchStmt.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92102 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index ceefea81f5..d7486f8513 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -665,7 +665,7 @@ void GRExprEngine::Visit(Stmt* S, ExplodedNode* Pred, ExplodedNodeSet& Dst) { case Stmt::IfStmtClass: // This case isn't for branch processing, but for handling the // initialization of a condition variable. - VisitIfStmtCondInit(cast<IfStmt>(S), Pred, Dst); + VisitCondInit(cast<IfStmt>(S)->getConditionVariable(), S, Pred, Dst); break; case Stmt::InitListExprClass: @@ -733,6 +733,12 @@ void GRExprEngine::Visit(Stmt* S, ExplodedNode* Pred, ExplodedNodeSet& Dst) { case Stmt::StringLiteralClass: VisitLValue(cast<StringLiteral>(S), Pred, Dst); break; + + case Stmt::SwitchStmtClass: + // This case isn't for branch processing, but for handling the + // initialization of a condition variable. + VisitCondInit(cast<SwitchStmt>(S)->getConditionVariable(), S, Pred, Dst); + break; case Stmt::UnaryOperatorClass: { UnaryOperator *U = cast<UnaryOperator>(S); @@ -2230,12 +2236,10 @@ void GRExprEngine::VisitDeclStmt(DeclStmt *DS, ExplodedNode *Pred, } } -void GRExprEngine::VisitIfStmtCondInit(IfStmt *IS, ExplodedNode *Pred, - ExplodedNodeSet& Dst) { - - VarDecl* VD = IS->getConditionVariable(); - Expr* InitEx = VD->getInit(); +void GRExprEngine::VisitCondInit(VarDecl *VD, Stmt *S, + ExplodedNode *Pred, ExplodedNodeSet& Dst) { + Expr* InitEx = VD->getInit(); ExplodedNodeSet Tmp; Visit(InitEx, Pred, Tmp); @@ -2255,7 +2259,7 @@ void GRExprEngine::VisitIfStmtCondInit(IfStmt *IS, ExplodedNode *Pred, Builder->getCurrentBlockCount()); } - EvalBind(Dst, IS, IS, N, state, + EvalBind(Dst, S, S, N, state, loc::MemRegionVal(state->getRegion(VD, LC)), InitVal, true); } } |