mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 15:57:15 +00:00
gitattributes: .png and .txt are no text files
llvm-svn: 187326
This commit is contained in:
parent
baf51e3e61
commit
983e785f17
2
polly/.gitattributes
vendored
2
polly/.gitattributes
vendored
@ -1,2 +1,4 @@
|
|||||||
# Auto detect text files and perform LF normalization
|
# Auto detect text files and perform LF normalization
|
||||||
* text eol=lf
|
* text eol=lf
|
||||||
|
*.png -text
|
||||||
|
*.pdf -text
|
||||||
|
@ -229,9 +229,9 @@ bool ScopDetection::isValidCFG(BasicBlock &BB,
|
|||||||
|
|
||||||
if (!isAffineExpr(&Context.CurRegion, LHS, *SE) ||
|
if (!isAffineExpr(&Context.CurRegion, LHS, *SE) ||
|
||||||
!isAffineExpr(&Context.CurRegion, RHS, *SE)) {
|
!isAffineExpr(&Context.CurRegion, RHS, *SE)) {
|
||||||
INVALID(AffFunc,
|
INVALID(AffFunc, "Non affine branch in BB '" << BB.getName()
|
||||||
"Non affine branch in BB '" << BB.getName() << "' with LHS: "
|
<< "' with LHS: " << *LHS
|
||||||
<< *LHS << " and RHS: " << *RHS);
|
<< " and RHS: " << *RHS);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -468,8 +468,8 @@ Region *ScopDetection::expandRegion(Region &R) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DEBUG(if (LastValidRegion)
|
DEBUG(if (LastValidRegion) dbgs() << "\tto " << LastValidRegion->getNameStr()
|
||||||
dbgs() << "\tto " << LastValidRegion->getNameStr() << "\n";
|
<< "\n";
|
||||||
else dbgs() << "\tExpanding " << R.getNameStr() << " failed\n";);
|
else dbgs() << "\tExpanding " << R.getNameStr() << " failed\n";);
|
||||||
|
|
||||||
return LastValidRegion;
|
return LastValidRegion;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user