Update to latest clang-format. [NFC]

Differential Revision: https://reviews.llvm.org/D40791

llvm-svn: 319718
This commit is contained in:
Siddharth Bhat 2017-12-05 00:06:09 +00:00
parent be61cc90c4
commit c0f5f4deae
1 changed files with 3 additions and 3 deletions

View File

@ -1367,9 +1367,9 @@ Region *ScopDetection::expandRegion(Region &R) {
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.