[llvm] cb94030 - [test] Add '-o -' to llc command to avoid creating unnecessary temp files
Dmitri Gribenko via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 3 07:18:59 PST 2025
Author: Dmitri Gribenko
Date: 2025-03-03T16:18:45+01:00
New Revision: cb940306d4a3078b53141221985ca8893a9a2cb6
URL: https://github.com/llvm/llvm-project/commit/cb940306d4a3078b53141221985ca8893a9a2cb6
DIFF: https://github.com/llvm/llvm-project/commit/cb940306d4a3078b53141221985ca8893a9a2cb6.diff
LOG: [test] Add '-o -' to llc command to avoid creating unnecessary temp files
Added:
Modified:
llvm/test/tools/llc/new-pm/x86_64-regalloc-pipeline.mir
Removed:
################################################################################
diff --git a/llvm/test/tools/llc/new-pm/x86_64-regalloc-pipeline.mir b/llvm/test/tools/llc/new-pm/x86_64-regalloc-pipeline.mir
index e72bdc3a299be..f1a30bc7964ca 100644
--- a/llvm/test/tools/llc/new-pm/x86_64-regalloc-pipeline.mir
+++ b/llvm/test/tools/llc/new-pm/x86_64-regalloc-pipeline.mir
@@ -1,6 +1,6 @@
# REQUIRES x86_64-registered-target
-# RUN: llc -mtriple=x86_64-unknown-linux-gnu -enable-new-pm -O3 -regalloc-npm=fast -print-pipeline-passes %s 2>&1 | FileCheck %s
-# RUN: llc -mtriple=x86_64-unknown-linux-gnu -enable-new-pm -O3 -regalloc-npm=greedy -print-pipeline-passes %s 2>&1 | FileCheck %s --check-prefix=CHECK-GREEDY
+# RUN: llc -mtriple=x86_64-unknown-linux-gnu -enable-new-pm -O3 -regalloc-npm=fast -print-pipeline-passes %s -o - 2>&1 | FileCheck %s
+# RUN: llc -mtriple=x86_64-unknown-linux-gnu -enable-new-pm -O3 -regalloc-npm=greedy -print-pipeline-passes %s -o - 2>&1 | FileCheck %s --check-prefix=CHECK-GREEDY
# CHECK: regallocfast
# CHECK-GREEDY: greedy<all>
More information about the llvm-commits
mailing list