Skip to content

Commit d2478e2

Browse files
committed
[llvm-exegis] Correct lit substitution in no-aliasing-ld-str.s
I assume that %d was meant to be %t. It did work with %d but it was making a file literally called that. Which if nothing else, looks like it's broken. Test remains disabled as I haven't found the cause of the llvm-objdump failure yet. Test added by #159366.
1 parent f76921a commit d2478e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/test/tools/llvm-exegesis/AArch64/no-aliasing-ld-str.s

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ REQUIRES: aarch64-registered-target
22
// Flakey on SVE buildbots, disabled pending invesgitation.
33
UNSUPPORTED: target={{.*}}
44

5-
RUN: llvm-exegesis -mtriple=aarch64 -mcpu=neoverse-v2 -mode=latency --dump-object-to-disk=%d --opcode-name=FMOVWSr --benchmark-phase=assemble-measured-code 2>&1
6-
RUN: llvm-objdump -d %d > %t.s
5+
RUN: llvm-exegesis -mtriple=aarch64 -mcpu=neoverse-v2 -mode=latency --dump-object-to-disk=%t.obj --opcode-name=FMOVWSr --benchmark-phase=assemble-measured-code 2>&1
6+
RUN: llvm-objdump -d %t.obj > %t.s
77
RUN: FileCheck %s < %t.s
88

99
CHECK-NOT: ld{{[1-4]}}

0 commit comments

Comments
 (0)