diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/GlobalISel/sub-scalar.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/GlobalISel/sub-scalar.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/GlobalISel/sub-scalar.ll b/llvm/test/CodeGen/X86/GlobalISel/sub-scalar.ll index ab1e39399b7..f8d825dff38 100644 --- a/llvm/test/CodeGen/X86/GlobalISel/sub-scalar.ll +++ b/llvm/test/CodeGen/X86/GlobalISel/sub-scalar.ll @@ -3,7 +3,7 @@ define i64 @test_sub_i64(i64 %arg1, i64 %arg2) { ; X64-LABEL: test_sub_i64: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: subq %rsi, %rdi ; X64-NEXT: movq %rdi, %rax ; X64-NEXT: retq @@ -13,7 +13,7 @@ define i64 @test_sub_i64(i64 %arg1, i64 %arg2) { define i32 @test_sub_i32(i32 %arg1, i32 %arg2) { ; X64-LABEL: test_sub_i32: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: subl %esi, %edi ; X64-NEXT: movl %edi, %eax ; X64-NEXT: retq @@ -23,7 +23,7 @@ define i32 @test_sub_i32(i32 %arg1, i32 %arg2) { define i16 @test_sub_i16(i16 %arg1, i16 %arg2) { ; X64-LABEL: test_sub_i16: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: subw %si, %di ; X64-NEXT: movl %edi, %eax ; X64-NEXT: retq @@ -33,7 +33,7 @@ define i16 @test_sub_i16(i16 %arg1, i16 %arg2) { define i8 @test_sub_i8(i8 %arg1, i8 %arg2) { ; X64-LABEL: test_sub_i8: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: subb %sil, %dil ; X64-NEXT: movl %edi, %eax ; X64-NEXT: retq @@ -43,7 +43,7 @@ define i8 @test_sub_i8(i8 %arg1, i8 %arg2) { define i32 @test_sub_i1(i32 %arg1, i32 %arg2) { ; X64-LABEL: test_sub_i1: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: subb %sil, %dil ; X64-NEXT: movzbl %dil, %eax ; X64-NEXT: andl $1, %eax |