forked from OSchip/llvm-project
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:
parent
c97cfb69ba
commit
b02b6a8404
|
@ -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; }
|
||||
|
|
Loading…
Reference in New Issue