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 | ff6fd0f4b047de6b7bc5ba0ef571731f3b213e8b (patch) | |
tree | 5252db203b239e06f914f660007ca0b439c574b5 /clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp | |
parent | e9fb6b891ef6eccd28fb6fcff1f39b0aea2793e4 (diff) | |
download | bcm5719-llvm-ff6fd0f4b047de6b7bc5ba0ef571731f3b213e8b.tar.gz bcm5719-llvm-ff6fd0f4b047de6b7bc5ba0ef571731f3b213e8b.zip |
Change 'StoreRef' back to 'Store' in GRState, shrinking the size of GRState back by one pointer.
llvm-svn: 126020
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp b/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp index 3ce50d65391..2a8364d4117 100644 --- a/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp +++ b/clang/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; |