Skip to content

Commit 7e29e57

Browse files
committed
[Polly] Fix misleading debug message. NFC.
The number of parameters can be the reason for aliasing checks not being generated, but most of the time it for other reasons.
1 parent 7cb25f5 commit 7e29e57

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

polly/lib/Analysis/ScopBuilder.cpp

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3407,13 +3407,8 @@ bool ScopBuilder::buildAliasChecks() {
34073407
// we make the assumed context infeasible.
34083408
scop->invalidate(ALIASING, DebugLoc());
34093409

3410-
LLVM_DEBUG(
3411-
dbgs() << "\n\nNOTE: Run time checks for " << scop->getNameStr()
3412-
<< " could not be created as the number of parameters involved "
3413-
"is too high. The SCoP will be "
3414-
"dismissed.\nUse:\n\t--polly-rtc-max-parameters=X\nto adjust "
3415-
"the maximal number of parameters but be advised that the "
3416-
"compile time might increase exponentially.\n\n");
3410+
LLVM_DEBUG(dbgs() << "\n\nNOTE: Run time checks for " << scop->getNameStr()
3411+
<< " could not be created. This SCoP has been dismissed.");
34173412
return false;
34183413
}
34193414

0 commit comments

Comments
 (0)