[llvm] b7f3104 - [GVN][NFC] Remove unnecessary assembly output from test (#129670)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 4 00:59:52 PST 2025
Author: Madhur Amilkanthwar
Date: 2025-03-04T14:29:49+05:30
New Revision: b7f31044f34036d277f5c6e21ef3a126b5972508
URL: https://github.com/llvm/llvm-project/commit/b7f31044f34036d277f5c6e21ef3a126b5972508
DIFF: https://github.com/llvm/llvm-project/commit/b7f31044f34036d277f5c6e21ef3a126b5972508.diff
LOG: [GVN][NFC] Remove unnecessary assembly output from test (#129670)
This test doesn't check any output from opt, so it can be safely
`disable-output` and thus less redirections.
Added:
Modified:
llvm/test/Transforms/GVN/opt-remarks.ll
Removed:
################################################################################
diff --git a/llvm/test/Transforms/GVN/opt-remarks.ll b/llvm/test/Transforms/GVN/opt-remarks.ll
index 9ff0a5cf8cb76..7c3f16917bc97 100644
--- a/llvm/test/Transforms/GVN/opt-remarks.ll
+++ b/llvm/test/Transforms/GVN/opt-remarks.ll
@@ -1,11 +1,11 @@
-; RUN: opt < %s -passes=gvn -o /dev/null -S -pass-remarks=gvn -pass-remarks-missed=gvn \
+; RUN: opt < %s -passes=gvn -disable-output -pass-remarks=gvn -pass-remarks-missed=gvn \
; RUN: 2>&1 | FileCheck %s
-; RUN: opt < %s -passes=gvn -o /dev/null -pass-remarks-output=%t -S
+; RUN: opt < %s -passes=gvn -disable-output -pass-remarks-output=%t -S
; RUN: cat %t | FileCheck -check-prefix=YAML %s
-; RUN: opt < %s -aa-pipeline=basic-aa -passes=gvn -o /dev/null -S -pass-remarks=gvn -pass-remarks-missed=gvn \
+; RUN: opt < %s -aa-pipeline=basic-aa -passes=gvn -disable-output -pass-remarks=gvn -pass-remarks-missed=gvn \
; RUN: 2>&1 | FileCheck %s
-; RUN: opt < %s -aa-pipeline=basic-aa -passes=gvn -o /dev/null -pass-remarks-output=%t -S
+; RUN: opt < %s -aa-pipeline=basic-aa -passes=gvn -disable-output -pass-remarks-output=%t -S
; RUN: cat %t | FileCheck -check-prefix=YAML %s
; CHECK: remark: <unknown>:0:0: load of type i32 eliminated{{$}}
More information about the llvm-commits
mailing list