[llvm] b18d828 - [tools][llc] Make save-stats.ll test target independent (#167238)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 10 03:51:11 PST 2025
Author: Tomer Shafir
Date: 2025-11-10T13:51:07+02:00
New Revision: b18d828eeae03cc9c42edf4d72911c75f117397c
URL: https://github.com/llvm/llvm-project/commit/b18d828eeae03cc9c42edf4d72911c75f117397c
DIFF: https://github.com/llvm/llvm-project/commit/b18d828eeae03cc9c42edf4d72911c75f117397c.diff
LOG: [tools][llc] Make save-stats.ll test target independent (#167238)
Added:
Modified:
llvm/test/tools/llc/save-stats.ll
Removed:
################################################################################
diff --git a/llvm/test/tools/llc/save-stats.ll b/llvm/test/tools/llc/save-stats.ll
index acb0367195043..4950625c809cc 100644
--- a/llvm/test/tools/llc/save-stats.ll
+++ b/llvm/test/tools/llc/save-stats.ll
@@ -1,10 +1,9 @@
; REQUIRES: asserts
-; REQUIRES: aarch64-registered-target
-; RUN: llc -mtriple=arm64-apple-macosx --save-stats=obj -o %t.s %s && cat %t.stats | FileCheck %s
-; RUN: llc -mtriple=arm64-apple-macosx --save-stats=cwd -o %t.s %s && cat %{t:stem}.tmp.stats | FileCheck %s
-; RUN: llc -mtriple=arm64-apple-macosx --save-stats -o %t.s %s && cat %{t:stem}.tmp.stats | FileCheck %s
-; RUN: not llc -mtriple=arm64-apple-macosx --save-stats=invalid -o %t.s %s 2>&1 | FileCheck %s --check-prefix=INVALID_ARG
+; RUN: llc --save-stats=obj -o %t.s %s && cat %t.stats | FileCheck %s
+; RUN: llc --save-stats=cwd -o %t.s %s && cat %{t:stem}.tmp.stats | FileCheck %s
+; RUN: llc --save-stats -o %t.s %s && cat %{t:stem}.tmp.stats | FileCheck %s
+; RUN: not llc --save-stats=invalid -o %t.s %s 2>&1 | FileCheck %s --check-prefix=INVALID_ARG
; CHECK: {
; CHECK: "asm-printer.EmittedInsts":
More information about the llvm-commits
mailing list