diff options
| author | Alex Bradbury <asb@igalia.com> | 2024-10-07 16:06:44 +0100 |
|---|---|---|
| committer | Alex Bradbury <asb@igalia.com> | 2024-10-07 16:06:44 +0100 |
| commit | 2fe1f84db379bccbf0a3ac136d063a94b5dc59cb (patch) | |
| tree | 129b85022211f53f823d64221f4c310dd4355edf /llvm/test/CodeGen/Generic | |
| parent | 8565213f2f9991d83d2b1353f00f35e2b34d9d12 (diff) | |
[test] Fix llc-start-stop.ll when the default target enables the loop terminator folding pass
Previously this would fail if the default target enabled the loop
terminator folding pass (currently just RISC-V), as it runs after loop
strength reduction.
Diffstat (limited to 'llvm/test/CodeGen/Generic')
| -rw-r--r-- | llvm/test/CodeGen/Generic/llc-start-stop.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/Generic/llc-start-stop.ll b/llvm/test/CodeGen/Generic/llc-start-stop.ll index b02472473a00..942c5d0020f2 100644 --- a/llvm/test/CodeGen/Generic/llc-start-stop.ll +++ b/llvm/test/CodeGen/Generic/llc-start-stop.ll @@ -27,7 +27,7 @@ ; START-BEFORE: -machine-branch-prob -regalloc-evict -regalloc-priority -domtree ; START-BEFORE: FunctionPass Manager ; START-BEFORE: Loop Strength Reduction -; START-BEFORE-NEXT: Basic Alias Analysis (stateless AA impl) +; START-BEFORE-NEXT: {{Loop Terminator Folding|Basic Alias Analysis \(stateless AA impl\)}} ; RUN: not --crash llc < %s -start-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-START-BEFORE ; RUN: not --crash llc < %s -stop-before=nonexistent -o /dev/null 2>&1 | FileCheck %s -check-prefix=NONEXISTENT-STOP-BEFORE |
