[cfe-commits] r65954 - /cfe/trunk/lib/Analysis/GRState.cpp
Ted Kremenek
kremenek at apple.com
Tue Mar 3 10:15:32 PST 2009
Author: kremenek
Date: Tue Mar 3 12:15:30 2009
New Revision: 65954
URL: http://llvm.org/viewvc/llvm-project?rev=65954&view=rev
Log:
Fix extra ';' bug noticed by Mike Stump.
Modified:
cfe/trunk/lib/Analysis/GRState.cpp
Modified: cfe/trunk/lib/Analysis/GRState.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/GRState.cpp?rev=65954&r1=65953&r2=65954&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/GRState.cpp (original)
+++ cfe/trunk/lib/Analysis/GRState.cpp Tue Mar 3 12:15:30 2009
@@ -269,7 +269,7 @@
// 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).
More information about the cfe-commits
mailing list