diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-02-19 03:56:19 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-02-19 03:56:19 +0000 |
commit | 09fe4a55248bd28a950ec4ba19900e5892be42f6 (patch) | |
tree | 4ff146b00601293e8c50fb4042db2be5ece7f13e /lib/StaticAnalyzer/Core/ExplodedGraph.cpp | |
parent | d40baf6a77f6353a93f181da5d1347d3730aad37 (diff) |
Change 'StoreRef' back to 'Store' in GRState, shrinking the size of GRState back by one pointer.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126020 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/ExplodedGraph.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/ExplodedGraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/ExplodedGraph.cpp b/lib/StaticAnalyzer/Core/ExplodedGraph.cpp index 3ce50d6539..2a8364d411 100644 --- a/lib/StaticAnalyzer/Core/ExplodedGraph.cpp +++ b/lib/StaticAnalyzer/Core/ExplodedGraph.cpp @@ -105,7 +105,7 @@ void ExplodedGraph::reclaimRecentlyAllocatedNodes() { // Conditions 5, 6, and 7. const GRState *state = node->getState(); const GRState *pred_state = pred->getState(); - if (state->St != pred_state->St || state->GDM != pred_state->GDM || + if (state->store != pred_state->store || state->GDM != pred_state->GDM || progPoint.getLocationContext() != pred->getLocationContext()) continue; |