diff --git a/polly/.gitattributes b/polly/.gitattributes index e7c1d93d39c5f..7105fff2d2f2c 100644 --- a/polly/.gitattributes +++ b/polly/.gitattributes @@ -1,2 +1,4 @@ # Auto detect text files and perform LF normalization * text eol=lf +*.png -text +*.pdf -text diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp index d06b5fccb84f7..ba8ff460ec1d6 100644 --- a/polly/lib/Analysis/ScopDetection.cpp +++ b/polly/lib/Analysis/ScopDetection.cpp @@ -229,9 +229,9 @@ bool ScopDetection::isValidCFG(BasicBlock &BB, if (!isAffineExpr(&Context.CurRegion, LHS, *SE) || !isAffineExpr(&Context.CurRegion, RHS, *SE)) { - INVALID(AffFunc, - "Non affine branch in BB '" << BB.getName() << "' with LHS: " - << *LHS << " and RHS: " << *RHS); + INVALID(AffFunc, "Non affine branch in BB '" << BB.getName() + << "' with LHS: " << *LHS + << " and RHS: " << *RHS); return false; } } @@ -468,8 +468,8 @@ Region *ScopDetection::expandRegion(Region &R) { } } - DEBUG(if (LastValidRegion) - dbgs() << "\tto " << LastValidRegion->getNameStr() << "\n"; + DEBUG(if (LastValidRegion) dbgs() << "\tto " << LastValidRegion->getNameStr() + << "\n"; else dbgs() << "\tExpanding " << R.getNameStr() << " failed\n";); return LastValidRegion;