[llvm] 04dbb44 - [LoopSimplifyCFG] Remove Extra Redirection From Test
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 11 12:34:34 PDT 2025
Author: Aiden Grossman
Date: 2025-10-11T19:34:17Z
New Revision: 04dbb44b9ec7c65c26a98dfc6fcf7a70dd306b0f
URL: https://github.com/llvm/llvm-project/commit/04dbb44b9ec7c65c26a98dfc6fcf7a70dd306b0f
DIFF: https://github.com/llvm/llvm-project/commit/04dbb44b9ec7c65c26a98dfc6fcf7a70dd306b0f.diff
LOG: [LoopSimplifyCFG] Remove Extra Redirection From Test
This test would redirect stderr into /dev/null for no reason. Update it
to better match the tests around it. This extra indirection also caused
the test to not play nicely with lit's internal shell with profcheck
enabled.
Related to #162966.
Added:
Modified:
llvm/test/Transforms/LoopSimplifyCFG/pr117537.ll
Removed:
################################################################################
diff --git a/llvm/test/Transforms/LoopSimplifyCFG/pr117537.ll b/llvm/test/Transforms/LoopSimplifyCFG/pr117537.ll
index df1399d3a0543..a8db6a032364e 100644
--- a/llvm/test/Transforms/LoopSimplifyCFG/pr117537.ll
+++ b/llvm/test/Transforms/LoopSimplifyCFG/pr117537.ll
@@ -1,5 +1,5 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
-; RUN: opt -S -passes='print<scalar-evolution>,loop-mssa(licm,loop-simplifycfg,loop-predication)' -verify-scev < %s 2>/dev/null | FileCheck %s
+; RUN: opt -S -passes='print<scalar-evolution>,loop-mssa(licm,loop-simplifycfg,loop-predication)' -verify-scev < %s | FileCheck %s
; Make sure we don't assert due to insufficient SCEV invalidation.
More information about the llvm-commits
mailing list