diff options
author | Jordy Rose <jediknil@belkadan.com> | 2010-07-01 20:09:55 +0000 |
---|---|---|
committer | Jordy Rose <jediknil@belkadan.com> | 2010-07-01 20:09:55 +0000 |
commit | 7dadf79bd809cc01fe275f9a7243593bc2af5c10 (patch) | |
tree | bfff7a4dd505379d788d9e9f99a3e05315e6474f /lib/Checker/CFRefCount.cpp | |
parent | 1619342d7ffcfdfd3e18b7c6da38d2bcbe2bb3f5 (diff) |
Add an ivar to SymbolReaper for the current statement, and then stop passing the current statement around everywhere. Preparation for symbolic extents.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/CFRefCount.cpp')
-rw-r--r-- | lib/Checker/CFRefCount.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Checker/CFRefCount.cpp b/lib/Checker/CFRefCount.cpp index c2c47333c4..8f65bf77bc 100644 --- a/lib/Checker/CFRefCount.cpp +++ b/lib/Checker/CFRefCount.cpp @@ -1849,7 +1849,7 @@ public: GRExprEngine& Engine, GRStmtNodeBuilder& Builder, ExplodedNode* Pred, - Stmt* S, const GRState* state, + const GRState* state, SymbolReaper& SymReaper); std::pair<ExplodedNode*, const GRState *> @@ -3400,10 +3400,9 @@ void CFRefCount::EvalDeadSymbols(ExplodedNodeSet& Dst, GRExprEngine& Eng, GRStmtNodeBuilder& Builder, ExplodedNode* Pred, - Stmt* S, const GRState* state, SymbolReaper& SymReaper) { - + Stmt *S = Builder.getStmt(); RefBindings B = state->get<RefBindings>(); // Update counts from autorelease pools |