diff options
| author | Ralf Jung <post@ralfj.de> | 2024-02-18 09:36:36 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-02-21 20:50:47 +0100 |
| commit | 07b62409478d810b723bf9bf2a471e78c8421d0d (patch) | |
| tree | 8a71f9f7d11681c12c087e6aa6e425a6354191c2 /tests/codegen/simd | |
| parent | 3dc631a61a7333123ece4f21b0d44e43cdff0980 (diff) | |
| download | rust-07b62409478d810b723bf9bf2a471e78c8421d0d.tar.gz rust-07b62409478d810b723bf9bf2a471e78c8421d0d.zip | |
remove simd_reduce_{min,max}_nanless
Diffstat (limited to 'tests/codegen/simd')
| -rw-r--r-- | tests/codegen/simd/issue-120720-reduce-nan.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/simd/issue-120720-reduce-nan.rs b/tests/codegen/simd/issue-120720-reduce-nan.rs index 233131aa01c..c2ffca4bd87 100644 --- a/tests/codegen/simd/issue-120720-reduce-nan.rs +++ b/tests/codegen/simd/issue-120720-reduce-nan.rs @@ -12,7 +12,7 @@ use std::arch::x86_64::*; #[no_mangle] #[target_feature(enable = "avx512f")] // Function-level target feature mismatches inhibit inlining pub unsafe fn demo() -> bool { - // CHECK: %0 = tail call reassoc nsz arcp contract double @llvm.vector.reduce.fadd.v8f64( + // CHECK: %0 = tail call reassoc double @llvm.vector.reduce.fadd.v8f64( // CHECK: %_0.i = fcmp uno double %0, 0.000000e+00 // CHECK: ret i1 %_0.i let res = unsafe { |
