Index: lib/Analysis/ScopDetection.cpp =================================================================== --- lib/Analysis/ScopDetection.cpp +++ lib/Analysis/ScopDetection.cpp @@ -1367,9 +1367,9 @@ DEBUG(dbgs() << "\tExpanding " << R.getNameStr() << "\n"); while (ExpandedRegion) { - const auto &It = DetectionContextMap.insert( - std::make_pair(getBBPairForRegion(ExpandedRegion.get()), - DetectionContext(*ExpandedRegion, AA, false /*verifying*/))); + const auto &It = DetectionContextMap.insert(std::make_pair( + getBBPairForRegion(ExpandedRegion.get()), + DetectionContext(*ExpandedRegion, AA, false /*verifying*/))); DetectionContext &Context = It.first->second; DEBUG(dbgs() << "\t\tTrying " << ExpandedRegion->getNameStr() << "\n"); // Only expand when we did not collect errors.