Adjust clang-format formatting to r289531

clang-format has been updated in r289531 to keep labels and values on
the same line. This change updates Polly to the new formatting style.

llvm-svn: 289533
This commit is contained in:
Tobias Grosser 2016-12-13 12:44:00 +00:00
parent c97cfb69ba
commit b02b6a8404
1 changed files with 4 additions and 4 deletions

View File

@ -249,8 +249,8 @@ bool ReportUndefOperand::classof(const RejectReason *RR) {
// ReportNonAffBranch.
std::string ReportNonAffBranch::getMessage() const {
return ("Non affine branch in BB '" + BB->getName()).str() + "' with LHS: " +
*LHS + " and RHS: " + *RHS;
return ("Non affine branch in BB '" + BB->getName()).str() +
"' with LHS: " + *LHS + " and RHS: " + *RHS;
}
bool ReportNonAffBranch::classof(const RejectReason *RR) {
@ -335,8 +335,8 @@ ReportLoopBound::ReportLoopBound(Loop *L, const SCEV *LoopCount)
Loc(L->getStartLoc()) {}
std::string ReportLoopBound::getMessage() const {
return "Non affine loop bound '" + *LoopCount + "' in loop: " +
L->getHeader()->getName();
return "Non affine loop bound '" + *LoopCount +
"' in loop: " + L->getHeader()->getName();
}
const DebugLoc &ReportLoopBound::getDebugLoc() const { return Loc; }