summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-02-19 03:56:19 +0000
committerTed Kremenek <kremenek@apple.com>2011-02-19 03:56:19 +0000
commitff6fd0f4b047de6b7bc5ba0ef571731f3b213e8b (patch)
tree5252db203b239e06f914f660007ca0b439c574b5 /clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
parente9fb6b891ef6eccd28fb6fcff1f39b0aea2793e4 (diff)
downloadbcm5719-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.cpp2
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;
OpenPOWER on IntegriCloud