diff --git a/llvm/test/CodeGen/VE/Vector/vec_reduce_add.ll b/llvm/test/CodeGen/VE/Vector/vec_reduce_add.ll index a0ad0cfbbb498f..3648850697fbc6 100644 --- a/llvm/test/CodeGen/VE/Vector/vec_reduce_add.ll +++ b/llvm/test/CodeGen/VE/Vector/vec_reduce_add.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vector.reduce.add.v256i64(<256 x i64>) diff --git a/llvm/test/CodeGen/VE/Vector/vec_reduce_and.ll b/llvm/test/CodeGen/VE/Vector/vec_reduce_and.ll index 7186ce42c04cb0..53af0f9c403425 100644 --- a/llvm/test/CodeGen/VE/Vector/vec_reduce_and.ll +++ b/llvm/test/CodeGen/VE/Vector/vec_reduce_and.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vector.reduce.and.v256i64(<256 x i64>) diff --git a/llvm/test/CodeGen/VE/Vector/vec_reduce_or.ll b/llvm/test/CodeGen/VE/Vector/vec_reduce_or.ll index 8f8308d047f9f0..f30b77449b04df 100644 --- a/llvm/test/CodeGen/VE/Vector/vec_reduce_or.ll +++ b/llvm/test/CodeGen/VE/Vector/vec_reduce_or.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vector.reduce.or.v256i64(<256 x i64>) diff --git a/llvm/test/CodeGen/VE/Vector/vec_reduce_smax.ll b/llvm/test/CodeGen/VE/Vector/vec_reduce_smax.ll index abb86645b74aa8..822b541e0b0471 100644 --- a/llvm/test/CodeGen/VE/Vector/vec_reduce_smax.ll +++ b/llvm/test/CodeGen/VE/Vector/vec_reduce_smax.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vector.reduce.smax.v256i64(<256 x i64>) diff --git a/llvm/test/CodeGen/VE/Vector/vec_reduce_xor.ll b/llvm/test/CodeGen/VE/Vector/vec_reduce_xor.ll index ad8c7ad7350204..47b291f3ecab6f 100644 --- a/llvm/test/CodeGen/VE/Vector/vec_reduce_xor.ll +++ b/llvm/test/CodeGen/VE/Vector/vec_reduce_xor.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vector.reduce.xor.v256i64(<256 x i64>) diff --git a/llvm/test/CodeGen/VE/Vector/vp_reduce_add.ll b/llvm/test/CodeGen/VE/Vector/vp_reduce_add.ll index 97ea68df3e09d6..9e54053e9dd634 100644 --- a/llvm/test/CodeGen/VE/Vector/vp_reduce_add.ll +++ b/llvm/test/CodeGen/VE/Vector/vp_reduce_add.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vp.reduce.add.v256i64(i64, <256 x i64>, <256 x i1>, i32) diff --git a/llvm/test/CodeGen/VE/Vector/vp_reduce_and.ll b/llvm/test/CodeGen/VE/Vector/vp_reduce_and.ll index c1dc3841e7f2ff..af2868a0c438a6 100644 --- a/llvm/test/CodeGen/VE/Vector/vp_reduce_and.ll +++ b/llvm/test/CodeGen/VE/Vector/vp_reduce_and.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vp.reduce.and.v256i64(i64, <256 x i64>, <256 x i1>, i32) diff --git a/llvm/test/CodeGen/VE/Vector/vp_reduce_or.ll b/llvm/test/CodeGen/VE/Vector/vp_reduce_or.ll index 41677f4c682a64..85f02a37a354f7 100644 --- a/llvm/test/CodeGen/VE/Vector/vp_reduce_or.ll +++ b/llvm/test/CodeGen/VE/Vector/vp_reduce_or.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vp.reduce.or.v256i64(i64, <256 x i64>, <256 x i1>, i32) diff --git a/llvm/test/CodeGen/VE/Vector/vp_reduce_smax.ll b/llvm/test/CodeGen/VE/Vector/vp_reduce_smax.ll index 9791a9aa27b0e8..766dd723dc9f11 100644 --- a/llvm/test/CodeGen/VE/Vector/vp_reduce_smax.ll +++ b/llvm/test/CodeGen/VE/Vector/vp_reduce_smax.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vp.reduce.smax.v256i64(i64, <256 x i64>, <256 x i1>, i32) diff --git a/llvm/test/CodeGen/VE/Vector/vp_reduce_xor.ll b/llvm/test/CodeGen/VE/Vector/vp_reduce_xor.ll index 233abb92c7f538..ac2de57b6baca9 100644 --- a/llvm/test/CodeGen/VE/Vector/vp_reduce_xor.ll +++ b/llvm/test/CodeGen/VE/Vector/vp_reduce_xor.ll @@ -1,5 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py -; RUN: llc -O0 --march=ve -mattr=+vpu %s -o=/dev/stdout | FileCheck %s +; RUN: llc < %s -O0 --march=ve -mattr=+vpu | FileCheck %s declare i64 @llvm.vp.reduce.xor.v256i64(i64, <256 x i64>, <256 x i1>, i32)