[llvm] improve debug messages in delinearization and dependence analysis (NFC) (PR #156339)
Ryotaro Kasuga via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 3 02:14:45 PDT 2025
================
@@ -182,7 +182,7 @@ void llvm::collectParametricTerms(ScalarEvolution &SE, const SCEV *Expr,
LLVM_DEBUG({
dbgs() << "Strides:\n";
for (const SCEV *S : Strides)
- dbgs() << *S << "\n";
+ dbgs() << " " << *S << "\n";
----------------
kasuga-fj wrote:
```suggestion
dbgs().indent(2) << *S << "\n";
```
The current one is fine if you prefer it. Same as other parts.
https://github.com/llvm/llvm-project/pull/156339
More information about the llvm-commits
mailing list