diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-02-22 17:25:00 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-02-22 17:25:00 +0000 |
commit | 5dfe6dab254decb87a8f798e18bb812eca3ca626 (patch) | |
tree | b6346a8a98278fb8fff13c0da12af70e442f2866 /llvm/lib/Analysis/RegionInfo.cpp | |
parent | 0f30a3ea25e9de721c618d216ad0cd6f404c4438 (diff) | |
download | bcm5719-llvm-5dfe6dab254decb87a8f798e18bb812eca3ca626.tar.gz bcm5719-llvm-5dfe6dab254decb87a8f798e18bb812eca3ca626.zip |
Remove extra semi-colons.
llvm-svn: 151169
Diffstat (limited to 'llvm/lib/Analysis/RegionInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/RegionInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/RegionInfo.cpp b/llvm/lib/Analysis/RegionInfo.cpp index 828913dd7b6..b507b1e340f 100644 --- a/llvm/lib/Analysis/RegionInfo.cpp +++ b/llvm/lib/Analysis/RegionInfo.cpp @@ -650,7 +650,7 @@ void RegionInfo::buildRegionsTree(DomTreeNode *N, Region *region) { // This basic block is a start block of a region. It is already in the // BBtoRegion relation. Only the child basic blocks have to be updated. if (it != BBtoRegion.end()) { - Region *newRegion = it->second;; + Region *newRegion = it->second; region->addSubRegion(getTopMostParent(newRegion)); region = newRegion; } else { |