diff options
author | Tobias Grosser <tobias@grosser.es> | 2013-07-28 09:05:20 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2013-07-28 09:05:20 +0000 |
commit | 983e785f175cb67452b241548db11294051b71ac (patch) | |
tree | 20f4862c0ef9cc0b263101bd26e4b6605f02beb0 /polly/lib | |
parent | baf51e3e61879bfceb9b455c69d10fdbbddfa57f (diff) | |
download | bcm5719-llvm-983e785f175cb67452b241548db11294051b71ac.tar.gz bcm5719-llvm-983e785f175cb67452b241548db11294051b71ac.zip |
gitattributes: .png and .txt are no text files
llvm-svn: 187326
Diffstat (limited to 'polly/lib')
-rw-r--r-- | polly/lib/Analysis/ScopDetection.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/polly/lib/Analysis/ScopDetection.cpp b/polly/lib/Analysis/ScopDetection.cpp index d06b5fccb84..ba8ff460ec1 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; |