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 | 90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce (patch) | |
tree | 3c4fb7488291e4e2602d3554fa5bbe661eb812ec /lib/Analysis | |
parent | 91ba63d230bfc3e035d2851d039e08f34f0b9bbd (diff) | |
download | external_llvm-90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce.zip external_llvm-90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce.tar.gz external_llvm-90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce.tar.bz2 |
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')
-rw-r--r-- | lib/Analysis/RegionInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/RegionInfo.cpp b/lib/Analysis/RegionInfo.cpp index 828913d..b507b1e 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 { |