summaryrefslogtreecommitdiff
path: root/lib/Analysis/RegionInfo.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-02-22 17:25:00 +0000
committerChad Rosier <mcrosier@apple.com>2012-02-22 17:25:00 +0000
commit90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce (patch)
tree3c4fb7488291e4e2602d3554fa5bbe661eb812ec /lib/Analysis/RegionInfo.cpp
parent91ba63d230bfc3e035d2851d039e08f34f0b9bbd (diff)
downloadllvm-90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce.tar.gz
llvm-90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce.tar.bz2
llvm-90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce.tar.xz
Remove extra semi-colons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RegionInfo.cpp')
-rw-r--r--lib/Analysis/RegionInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/RegionInfo.cpp b/lib/Analysis/RegionInfo.cpp
index 828913dd7b..b507b1e340 100644
--- a/lib/Analysis/RegionInfo.cpp
+++ b/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 {