gitattributes: .png and .txt are no text files

llvm-svn: 187326
This commit is contained in:
Tobias Grosser 2013-07-28 09:05:20 +00:00
parent baf51e3e61
commit 983e785f17
2 changed files with 7 additions and 5 deletions

View File

@ -1,2 +1,4 @@
# Auto detect text files and perform LF normalization
* text eol=lf
*.png -text
*.pdf -text

View File

@ -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;