diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/dag-merge-fast-accesses.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/dag-merge-fast-accesses.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/X86/dag-merge-fast-accesses.ll b/llvm/test/CodeGen/X86/dag-merge-fast-accesses.ll index e5dfccb278c..662f74f9754 100644 --- a/llvm/test/CodeGen/X86/dag-merge-fast-accesses.ll +++ b/llvm/test/CodeGen/X86/dag-merge-fast-accesses.ll @@ -7,13 +7,13 @@ define void @merge_const_vec_store(i64* %ptr) { ; FAST-LABEL: merge_const_vec_store: -; FAST: # BB#0: +; FAST: # %bb.0: ; FAST-NEXT: xorps %xmm0, %xmm0 ; FAST-NEXT: movups %xmm0, (%rdi) ; FAST-NEXT: retq ; ; SLOW-LABEL: merge_const_vec_store: -; SLOW: # BB#0: +; SLOW: # %bb.0: ; SLOW-NEXT: movq $0, (%rdi) ; SLOW-NEXT: movq $0, 8(%rdi) ; SLOW-NEXT: retq @@ -29,12 +29,12 @@ define void @merge_const_vec_store(i64* %ptr) { define void @merge_vec_element_store(<4 x double> %v, double* %ptr) { ; FAST-LABEL: merge_vec_element_store: -; FAST: # BB#0: +; FAST: # %bb.0: ; FAST-NEXT: movups %xmm0, (%rdi) ; FAST-NEXT: retq ; ; SLOW-LABEL: merge_vec_element_store: -; SLOW: # BB#0: +; SLOW: # %bb.0: ; SLOW-NEXT: movlpd %xmm0, (%rdi) ; SLOW-NEXT: movhpd %xmm0, 8(%rdi) ; SLOW-NEXT: retq @@ -53,13 +53,13 @@ define void @merge_vec_element_store(<4 x double> %v, double* %ptr) { define void @merge_vec_load_and_stores(i64 *%ptr) { ; FAST-LABEL: merge_vec_load_and_stores: -; FAST: # BB#0: +; FAST: # %bb.0: ; FAST-NEXT: movups (%rdi), %xmm0 ; FAST-NEXT: movups %xmm0, 40(%rdi) ; FAST-NEXT: retq ; ; SLOW-LABEL: merge_vec_load_and_stores: -; SLOW: # BB#0: +; SLOW: # %bb.0: ; SLOW-NEXT: movq (%rdi), %rax ; SLOW-NEXT: movq 8(%rdi), %rcx ; SLOW-NEXT: movq %rax, 40(%rdi) |