diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/fast-isel-constpool.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fast-isel-constpool.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/X86/fast-isel-constpool.ll b/llvm/test/CodeGen/X86/fast-isel-constpool.ll index 374a5e3907c..4b8f387571e 100644 --- a/llvm/test/CodeGen/X86/fast-isel-constpool.ll +++ b/llvm/test/CodeGen/X86/fast-isel-constpool.ll @@ -9,25 +9,25 @@ ; Make sure fast isel uses rip-relative addressing for the small code model. define float @constpool_float(float %x) { ; CHECK-LABEL: constpool_float: -; CHECK: ## BB#0: +; CHECK: ## %bb.0: ; CHECK-NEXT: movss {{.*#+}} xmm1 = mem[0],zero,zero,zero ; CHECK-NEXT: addss %xmm1, %xmm0 ; CHECK-NEXT: retq ; ; LARGE-LABEL: constpool_float: -; LARGE: ## BB#0: +; LARGE: ## %bb.0: ; LARGE-NEXT: movabsq $LCPI0_0, %rax ; LARGE-NEXT: addss (%rax), %xmm0 ; LARGE-NEXT: retq ; ; AVX-LABEL: constpool_float: -; AVX: ## BB#0: +; AVX: ## %bb.0: ; AVX-NEXT: vmovss {{.*#+}} xmm1 = mem[0],zero,zero,zero ; AVX-NEXT: vaddss %xmm1, %xmm0, %xmm0 ; AVX-NEXT: retq ; ; LARGE_AVX-LABEL: constpool_float: -; LARGE_AVX: ## BB#0: +; LARGE_AVX: ## %bb.0: ; LARGE_AVX-NEXT: movabsq $LCPI0_0, %rax ; LARGE_AVX-NEXT: vaddss (%rax), %xmm0, %xmm0 ; LARGE_AVX-NEXT: retq @@ -38,25 +38,25 @@ define float @constpool_float(float %x) { define double @constpool_double(double %x) nounwind { ; CHECK-LABEL: constpool_double: -; CHECK: ## BB#0: +; CHECK: ## %bb.0: ; CHECK-NEXT: movsd {{.*#+}} xmm1 = mem[0],zero ; CHECK-NEXT: addsd %xmm1, %xmm0 ; CHECK-NEXT: retq ; ; LARGE-LABEL: constpool_double: -; LARGE: ## BB#0: +; LARGE: ## %bb.0: ; LARGE-NEXT: movabsq $LCPI1_0, %rax ; LARGE-NEXT: addsd (%rax), %xmm0 ; LARGE-NEXT: retq ; ; AVX-LABEL: constpool_double: -; AVX: ## BB#0: +; AVX: ## %bb.0: ; AVX-NEXT: vmovsd {{.*#+}} xmm1 = mem[0],zero ; AVX-NEXT: vaddsd %xmm1, %xmm0, %xmm0 ; AVX-NEXT: retq ; ; LARGE_AVX-LABEL: constpool_double: -; LARGE_AVX: ## BB#0: +; LARGE_AVX: ## %bb.0: ; LARGE_AVX-NEXT: movabsq $LCPI1_0, %rax ; LARGE_AVX-NEXT: vaddsd (%rax), %xmm0, %xmm0 ; LARGE_AVX-NEXT: retq |