[llvm] [delinearize] use update_analyze_test_checks.py in delinearization testcases (PR #153831)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 15 12:49:35 PDT 2025
================
@@ -744,7 +744,8 @@ namespace {
void printDelinearization(raw_ostream &O, Function *F, LoopInfo *LI,
ScalarEvolution *SE) {
- O << "Delinearization on function " << F->getName() << ":\n";
+ O << "Printing analysis 'Delinearization' for function '" << F->getName()
+ << "':";
for (Instruction &Inst : instructions(F)) {
// Only analyze loads and stores.
if (!isa<StoreInst>(&Inst) && !isa<LoadInst>(&Inst) &&
----------------
nikic wrote:
Should we skip getelementptrs? Based on the output, it seems like those are largely note useful.
https://github.com/llvm/llvm-project/pull/153831
More information about the llvm-commits
mailing list