Author: Usman Nadeem Date: 2026-01-23T08:53:41Z New Revision: f1eb1f2e623e9fe6bf5c527892a559a4cafc9457
URL: https://github.com/llvm/llvm-project/commit/f1eb1f2e623e9fe6bf5c527892a559a4cafc9457 DIFF: https://github.com/llvm/llvm-project/commit/f1eb1f2e623e9fe6bf5c527892a559a4cafc9457.diff LOG: [llvm-exegesis] Add -mtriple to AArch64 test (#177485) Similar to https://github.com/llvm/llvm-project/pull/148968 (cherry picked from commit 12b3a9f52e76611b3d3ceb746559d2c384b2565e) Added: Modified: llvm/test/tools/llvm-exegesis/AArch64/debug-gen-asm.s Removed: ################################################################################ diff --git a/llvm/test/tools/llvm-exegesis/AArch64/debug-gen-asm.s b/llvm/test/tools/llvm-exegesis/AArch64/debug-gen-asm.s index 7cd088fa7f20e..4690c76eaf98d 100644 --- a/llvm/test/tools/llvm-exegesis/AArch64/debug-gen-asm.s +++ b/llvm/test/tools/llvm-exegesis/AArch64/debug-gen-asm.s @@ -1,6 +1,6 @@ REQUIRES: aarch64-registered-target, asserts -RUN: llvm-exegesis -mcpu=neoverse-v2 --use-dummy-perf-counters --min-instructions=100 --mode=latency --debug-only=preview-gen-assembly --opcode-name=ADDVv4i16v 2>&1 | FileCheck %s -check-prefix=PREVIEW +RUN: llvm-exegesis -mtriple=aarch64 -mcpu=neoverse-v2 --use-dummy-perf-counters --min-instructions=100 --mode=latency --debug-only=preview-gen-assembly --opcode-name=ADDVv4i16v 2>&1 | FileCheck %s -check-prefix=PREVIEW PREVIEW: Generated assembly snippet: PREVIEW-NEXT: ``` @@ -11,7 +11,7 @@ PREVIEW-NEXT: {{.*}} addv h{{[0-9]+}}, v{{[0-9]+}}.4h PREVIEW: {{.*}} ret PREVIEW-NEXT:``` -RUN: llvm-exegesis -mcpu=neoverse-v2 --use-dummy-perf-counters --min-instructions=100 --mode=latency --debug-only=print-gen-assembly --opcode-name=ADDVv4i16v 2>&1 | FileCheck %s -check-prefix=PRINT +RUN: llvm-exegesis -mtriple=aarch64 -mcpu=neoverse-v2 --use-dummy-perf-counters --min-instructions=100 --mode=latency --debug-only=print-gen-assembly --opcode-name=ADDVv4i16v 2>&1 | FileCheck %s -check-prefix=PRINT PRINT: Generated assembly snippet: PRINT-NEXT: ``` PRINT: {{[04]}}: {{.*}} movi d{{[0-9]+}}, #0000000000000000 _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
