diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/umul-with-overflow.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/umul-with-overflow.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/X86/umul-with-overflow.ll b/llvm/test/CodeGen/X86/umul-with-overflow.ll index 2e877a0b6e0..22e1057b803 100644 --- a/llvm/test/CodeGen/X86/umul-with-overflow.ll +++ b/llvm/test/CodeGen/X86/umul-with-overflow.ll @@ -6,7 +6,7 @@ declare {i32, i1} @llvm.umul.with.overflow.i32(i32 %a, i32 %b) define zeroext i1 @a(i32 %x) nounwind { ; X86-LABEL: a: -; X86: # BB#0: +; X86: # %bb.0: ; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movl $3, %ecx ; X86-NEXT: mull %ecx @@ -14,7 +14,7 @@ define zeroext i1 @a(i32 %x) nounwind { ; X86-NEXT: retl ; ; X64-LABEL: a: -; X64: # BB#0: +; X64: # %bb.0: ; X64-NEXT: movl $3, %ecx ; X64-NEXT: movl %edi, %eax ; X64-NEXT: mull %ecx @@ -27,14 +27,14 @@ define zeroext i1 @a(i32 %x) nounwind { define i32 @test2(i32 %a, i32 %b) nounwind readnone { ; X86-LABEL: test2: -; X86: # BB#0: # %entry +; X86: # %bb.0: # %entry ; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: addl {{[0-9]+}}(%esp), %eax ; X86-NEXT: addl %eax, %eax ; X86-NEXT: retl ; ; X64-LABEL: test2: -; X64: # BB#0: # %entry +; X64: # %bb.0: # %entry ; X64-NEXT: # kill: %edi<def> %edi<kill> %rdi<def> ; X64-NEXT: addl %esi, %edi ; X64-NEXT: leal (%rdi,%rdi), %eax @@ -48,7 +48,7 @@ entry: define i32 @test3(i32 %a, i32 %b) nounwind readnone { ; X86-LABEL: test3: -; X86: # BB#0: # %entry +; X86: # %bb.0: # %entry ; X86-NEXT: movl {{[0-9]+}}(%esp), %eax ; X86-NEXT: addl {{[0-9]+}}(%esp), %eax ; X86-NEXT: movl $4, %ecx @@ -56,7 +56,7 @@ define i32 @test3(i32 %a, i32 %b) nounwind readnone { ; X86-NEXT: retl ; ; X64-LABEL: test3: -; X64: # BB#0: # %entry +; X64: # %bb.0: # %entry ; X64-NEXT: # kill: %esi<def> %esi<kill> %rsi<def> ; X64-NEXT: # kill: %edi<def> %edi<kill> %rdi<def> ; X64-NEXT: leal (%rdi,%rsi), %eax |