]> granicus.if.org Git - clang/commitdiff
Fix extra ';' bug noticed by Mike Stump.
authorTed Kremenek <kremenek@apple.com>
Tue, 3 Mar 2009 18:15:30 +0000 (18:15 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 3 Mar 2009 18:15:30 +0000 (18:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65954 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/GRState.cpp

index 794871cb1a73efd50b6b45828cac9e31b6bb6f98..28e819085aff262108137614b7027cb0a30e5491 100644 (file)
@@ -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).