diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/v2f32.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/v2f32.ll | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/test/CodeGen/X86/v2f32.ll b/llvm/test/CodeGen/X86/v2f32.ll index 2fb46edc5c8..cabefa46c50 100644 --- a/llvm/test/CodeGen/X86/v2f32.ll +++ b/llvm/test/CodeGen/X86/v2f32.ll @@ -5,14 +5,14 @@ ; PR7518 define void @test1(<2 x float> %Q, float *%P2) nounwind { ; X64-LABEL: test1: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: movshdup {{.*#+}} xmm1 = xmm0[1,1,3,3] ; X64-NEXT: addss %xmm0, %xmm1 ; X64-NEXT: movss %xmm1, (%rdi) ; X64-NEXT: retq ; ; X32-LABEL: test1: -; X32: # BB#0: +; X32: # %bb.0: ; X32-NEXT: movl {{[0-9]+}}(%esp), %eax ; X32-NEXT: movshdup {{.*#+}} xmm1 = xmm0[1,1,3,3] ; X32-NEXT: addss %xmm0, %xmm1 @@ -27,12 +27,12 @@ define void @test1(<2 x float> %Q, float *%P2) nounwind { define <2 x float> @test2(<2 x float> %Q, <2 x float> %R, <2 x float> *%P) nounwind { ; X64-LABEL: test2: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: addps %xmm1, %xmm0 ; X64-NEXT: retq ; ; X32-LABEL: test2: -; X32: # BB#0: +; X32: # %bb.0: ; X32-NEXT: addps %xmm1, %xmm0 ; X32-NEXT: retl %Z = fadd <2 x float> %Q, %R @@ -41,12 +41,12 @@ define <2 x float> @test2(<2 x float> %Q, <2 x float> %R, <2 x float> *%P) nounw define <2 x float> @test3(<4 x float> %A) nounwind { ; X64-LABEL: test3: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: addps %xmm0, %xmm0 ; X64-NEXT: retq ; ; X32-LABEL: test3: -; X32: # BB#0: +; X32: # %bb.0: ; X32-NEXT: addps %xmm0, %xmm0 ; X32-NEXT: retl %B = shufflevector <4 x float> %A, <4 x float> undef, <2 x i32> <i32 0, i32 1> @@ -56,12 +56,12 @@ define <2 x float> @test3(<4 x float> %A) nounwind { define <2 x float> @test4(<2 x float> %A) nounwind { ; X64-LABEL: test4: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: addps %xmm0, %xmm0 ; X64-NEXT: retq ; ; X32-LABEL: test4: -; X32: # BB#0: +; X32: # %bb.0: ; X32-NEXT: addps %xmm0, %xmm0 ; X32-NEXT: retl %C = fadd <2 x float> %A, %A @@ -70,13 +70,13 @@ define <2 x float> @test4(<2 x float> %A) nounwind { define <4 x float> @test5(<4 x float> %A) nounwind { ; X64-LABEL: test5: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: addps %xmm0, %xmm0 ; X64-NEXT: addps %xmm0, %xmm0 ; X64-NEXT: retq ; ; X32-LABEL: test5: -; X32: # BB#0: +; X32: # %bb.0: ; X32-NEXT: addps %xmm0, %xmm0 ; X32-NEXT: addps %xmm0, %xmm0 ; X32-NEXT: retl |