Fix extra ';' bug noticed by Mike Stump.

llvm-svn: 65954
This commit is contained in:
Ted Kremenek 2009-03-03 18:15:30 +00:00
parent 9a8a28da99
commit 5340b248b4
1 changed files with 1 additions and 1 deletions

View 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).