aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-03-03 18:15:30 +0000
committerTed Kremenek <kremenek@apple.com>2009-03-03 18:15:30 +0000
commit6076e0a65183e52dd118e34f62bc2adc056a54e1 (patch)
tree0567808b106cee66d73b8aa2def31649db5b5c80
parentd35e63106d7b4b76275c85c88ee715c4356f2a6b (diff)
Fix extra ';' bug noticed by Mike Stump.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65954 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/GRState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRState.cpp b/lib/Analysis/GRState.cpp
index 794871cb1a..28e819085a 100644
--- a/lib/Analysis/GRState.cpp
+++ b/lib/Analysis/GRState.cpp
@@ -269,7 +269,7 @@ bool ScanReachableSymbols::scan(const MemRegion *R) {
// If this is a subregion, also visit the parent regions.
if (const SubRegion *SR = dyn_cast<SubRegion>(R))
- if (!scan(SR->getSuperRegion()));
+ if (!scan(SR->getSuperRegion()))
return false;
// Now look at the binding to this region (if any).