diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/vector-reduce-fmax.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vector-reduce-fmax.ll | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/llvm/test/CodeGen/X86/vector-reduce-fmax.ll b/llvm/test/CodeGen/X86/vector-reduce-fmax.ll index 7582deda097..f63d5dcdc09 100644 --- a/llvm/test/CodeGen/X86/vector-reduce-fmax.ll +++ b/llvm/test/CodeGen/X86/vector-reduce-fmax.ll @@ -35,7 +35,7 @@ define float @test_v2f32(<2 x float> %a0) { ; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3] ; AVX512-NEXT: vmaxss %xmm1, %xmm0, %xmm0 ; AVX512-NEXT: retq - %1 = call float @llvm.experimental.vector.reduce.fmax.f32.v2f32(<2 x float> %a0) + %1 = call float @llvm.experimental.vector.reduce.fmax.v2f32(<2 x float> %a0) ret float %1 } @@ -74,7 +74,7 @@ define float @test_v4f32(<4 x float> %a0) { ; AVX512-NEXT: vmovshdup {{.*#+}} xmm1 = xmm0[1,1,3,3] ; AVX512-NEXT: vmaxss %xmm1, %xmm0, %xmm0 ; AVX512-NEXT: retq - %1 = call float @llvm.experimental.vector.reduce.fmax.f32.v4f32(<4 x float> %a0) + %1 = call float @llvm.experimental.vector.reduce.fmax.v4f32(<4 x float> %a0) ret float %1 } @@ -121,7 +121,7 @@ define float @test_v8f32(<8 x float> %a0) { ; AVX512-NEXT: vmaxss %xmm1, %xmm0, %xmm0 ; AVX512-NEXT: vzeroupper ; AVX512-NEXT: retq - %1 = call float @llvm.experimental.vector.reduce.fmax.f32.v8f32(<8 x float> %a0) + %1 = call float @llvm.experimental.vector.reduce.fmax.v8f32(<8 x float> %a0) ret float %1 } @@ -175,7 +175,7 @@ define float @test_v16f32(<16 x float> %a0) { ; AVX512-NEXT: vmaxss %xmm1, %xmm0, %xmm0 ; AVX512-NEXT: vzeroupper ; AVX512-NEXT: retq - %1 = call float @llvm.experimental.vector.reduce.fmax.f32.v16f32(<16 x float> %a0) + %1 = call float @llvm.experimental.vector.reduce.fmax.v16f32(<16 x float> %a0) ret float %1 } @@ -202,7 +202,7 @@ define double @test_v2f64(<2 x double> %a0) { ; AVX512-NEXT: vpermilpd {{.*#+}} xmm1 = xmm0[1,0] ; AVX512-NEXT: vmaxsd %xmm1, %xmm0, %xmm0 ; AVX512-NEXT: retq - %1 = call double @llvm.experimental.vector.reduce.fmax.f64.v2f64(<2 x double> %a0) + %1 = call double @llvm.experimental.vector.reduce.fmax.v2f64(<2 x double> %a0) ret double %1 } @@ -232,7 +232,7 @@ define double @test_v4f64(<4 x double> %a0) { ; AVX512-NEXT: vmaxsd %xmm1, %xmm0, %xmm0 ; AVX512-NEXT: vzeroupper ; AVX512-NEXT: retq - %1 = call double @llvm.experimental.vector.reduce.fmax.f64.v4f64(<4 x double> %a0) + %1 = call double @llvm.experimental.vector.reduce.fmax.v4f64(<4 x double> %a0) ret double %1 } @@ -267,7 +267,7 @@ define double @test_v8f64(<8 x double> %a0) { ; AVX512-NEXT: vmaxsd %xmm1, %xmm0, %xmm0 ; AVX512-NEXT: vzeroupper ; AVX512-NEXT: retq - %1 = call double @llvm.experimental.vector.reduce.fmax.f64.v8f64(<8 x double> %a0) + %1 = call double @llvm.experimental.vector.reduce.fmax.v8f64(<8 x double> %a0) ret double %1 } @@ -309,16 +309,16 @@ define double @test_v16f64(<16 x double> %a0) { ; AVX512-NEXT: vmaxsd %xmm1, %xmm0, %xmm0 ; AVX512-NEXT: vzeroupper ; AVX512-NEXT: retq - %1 = call double @llvm.experimental.vector.reduce.fmax.f64.v16f64(<16 x double> %a0) + %1 = call double @llvm.experimental.vector.reduce.fmax.v16f64(<16 x double> %a0) ret double %1 } -declare float @llvm.experimental.vector.reduce.fmax.f32.v2f32(<2 x float>) -declare float @llvm.experimental.vector.reduce.fmax.f32.v4f32(<4 x float>) -declare float @llvm.experimental.vector.reduce.fmax.f32.v8f32(<8 x float>) -declare float @llvm.experimental.vector.reduce.fmax.f32.v16f32(<16 x float>) +declare float @llvm.experimental.vector.reduce.fmax.v2f32(<2 x float>) +declare float @llvm.experimental.vector.reduce.fmax.v4f32(<4 x float>) +declare float @llvm.experimental.vector.reduce.fmax.v8f32(<8 x float>) +declare float @llvm.experimental.vector.reduce.fmax.v16f32(<16 x float>) -declare double @llvm.experimental.vector.reduce.fmax.f64.v2f64(<2 x double>) -declare double @llvm.experimental.vector.reduce.fmax.f64.v4f64(<4 x double>) -declare double @llvm.experimental.vector.reduce.fmax.f64.v8f64(<8 x double>) -declare double @llvm.experimental.vector.reduce.fmax.f64.v16f64(<16 x double>) +declare double @llvm.experimental.vector.reduce.fmax.v2f64(<2 x double>) +declare double @llvm.experimental.vector.reduce.fmax.v4f64(<4 x double>) +declare double @llvm.experimental.vector.reduce.fmax.v8f64(<8 x double>) +declare double @llvm.experimental.vector.reduce.fmax.v16f64(<16 x double>) |