Remove extra semi-colons.
[oota-llvm.git] / lib / Analysis / RegionInfo.cpp
index 828913dd7b693f5589624f515ca87cd323059de0..b507b1e340f5789cd0d7e5afcff3fe64bc699c30 100644 (file)
@@ -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 {