diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/combine-avx-intrinsics.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/combine-avx-intrinsics.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/X86/combine-avx-intrinsics.ll b/llvm/test/CodeGen/X86/combine-avx-intrinsics.ll index 811b1f20833..e46a1903e81 100644 --- a/llvm/test/CodeGen/X86/combine-avx-intrinsics.ll +++ b/llvm/test/CodeGen/X86/combine-avx-intrinsics.ll @@ -4,7 +4,7 @@ define <4 x double> @test_x86_avx_blend_pd_256(<4 x double> %a0) { ; CHECK-LABEL: test_x86_avx_blend_pd_256: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: retq %1 = call <4 x double> @llvm.x86.avx.blend.pd.256(<4 x double> %a0, <4 x double> %a0, i32 7) ret <4 x double> %1 @@ -12,7 +12,7 @@ define <4 x double> @test_x86_avx_blend_pd_256(<4 x double> %a0) { define <8 x float> @test_x86_avx_blend_ps_256(<8 x float> %a0) { ; CHECK-LABEL: test_x86_avx_blend_ps_256: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: retq %1 = call <8 x float> @llvm.x86.avx.blend.ps.256(<8 x float> %a0, <8 x float> %a0, i32 7) ret <8 x float> %1 @@ -20,7 +20,7 @@ define <8 x float> @test_x86_avx_blend_ps_256(<8 x float> %a0) { define <4 x double> @test2_x86_avx_blend_pd_256(<4 x double> %a0, <4 x double> %a1) { ; CHECK-LABEL: test2_x86_avx_blend_pd_256: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: retq %1 = call <4 x double> @llvm.x86.avx.blend.pd.256(<4 x double> %a0, <4 x double> %a1, i32 0) ret <4 x double> %1 @@ -28,7 +28,7 @@ define <4 x double> @test2_x86_avx_blend_pd_256(<4 x double> %a0, <4 x double> % define <8 x float> @test2_x86_avx_blend_ps_256(<8 x float> %a0, <8 x float> %a1) { ; CHECK-LABEL: test2_x86_avx_blend_ps_256: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: retq %1 = call <8 x float> @llvm.x86.avx.blend.ps.256(<8 x float> %a0, <8 x float> %a1, i32 0) ret <8 x float> %1 @@ -36,7 +36,7 @@ define <8 x float> @test2_x86_avx_blend_ps_256(<8 x float> %a0, <8 x float> %a1) define <4 x double> @test3_x86_avx_blend_pd_256(<4 x double> %a0, <4 x double> %a1) { ; CHECK-LABEL: test3_x86_avx_blend_pd_256: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: vmovaps %ymm1, %ymm0 ; CHECK-NEXT: retq %1 = call <4 x double> @llvm.x86.avx.blend.pd.256(<4 x double> %a0, <4 x double> %a1, i32 -1) @@ -45,7 +45,7 @@ define <4 x double> @test3_x86_avx_blend_pd_256(<4 x double> %a0, <4 x double> % define <8 x float> @test3_x86_avx_blend_ps_256(<8 x float> %a0, <8 x float> %a1) { ; CHECK-LABEL: test3_x86_avx_blend_ps_256: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: vmovaps %ymm1, %ymm0 ; CHECK-NEXT: retq %1 = call <8 x float> @llvm.x86.avx.blend.ps.256(<8 x float> %a0, <8 x float> %a1, i32 -1) |