Skip to content

Commit

Permalink
Update to latest clang-format. [NFC]
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D40791

llvm-svn: 319718
  • Loading branch information
bollu committed Dec 5, 2017
1 parent be61cc9 commit c0f5f4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions polly/lib/Analysis/ScopDetection.cpp
Expand Up @@ -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.
Expand Down

0 comments on commit c0f5f4d

Please sign in to comment.