diff options
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/testComparesigtsi.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/testComparesigtsi.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/PowerPC/testComparesigtsi.ll b/llvm/test/CodeGen/PowerPC/testComparesigtsi.ll index f7a32c9c49b..77dfc3583f1 100644 --- a/llvm/test/CodeGen/PowerPC/testComparesigtsi.ll +++ b/llvm/test/CodeGen/PowerPC/testComparesigtsi.ll @@ -10,7 +10,7 @@ ; Function Attrs: norecurse nounwind readnone define signext i32 @test_igtsi(i32 signext %a, i32 signext %b) { ; CHECK-LABEL: test_igtsi: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK-NEXT: sub [[REG:r[0-9]+]], r4, r3 ; CHECK-NEXT: rldicl r3, [[REG]], 1, 63 ; CHECK-NEXT: blr @@ -23,7 +23,7 @@ entry: ; Function Attrs: norecurse nounwind readnone define signext i32 @test_igtsi_sext(i32 signext %a, i32 signext %b) { ; CHECK-LABEL: test_igtsi_sext: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK-NEXT: sub [[REG:r[0-9]+]], r4, r3 ; CHECK-NEXT: sradi r3, [[REG]], 63 ; CHECK-NEXT: blr @@ -37,7 +37,7 @@ entry: ; Function Attrs: norecurse nounwind readnone define signext i32 @test_igtsi_z(i32 signext %a) { ; CHECK-LABEL: test_igtsi_z: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK-NEXT: neg r3, r3 ; CHECK-NEXT: rldicl r3, r3, 1, 63 ; CHECK-NEXT: blr @@ -62,7 +62,7 @@ entry: ; Function Attrs: norecurse nounwind define void @test_igtsi_store(i32 signext %a, i32 signext %b) { ; CHECK-LABEL: test_igtsi_store: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK: sub [[REG:r[0-9]+]], r4, r3 ; CHECK: rldicl {{r[0-9]+}}, [[REG]], 1, 63 entry: @@ -75,7 +75,7 @@ entry: ; Function Attrs: norecurse nounwind define void @test_igtsi_sext_store(i32 signext %a, i32 signext %b) { ; CHECK-LABEL: test_igtsi_sext_store: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK: sub [[REG:r[0-9]+]], r4, r3 ; CHECK: sradi {{r[0-9]+}}, [[REG]], 63 entry: @@ -89,7 +89,7 @@ entry: ; Function Attrs: norecurse nounwind define void @test_igtsi_z_store(i32 signext %a) { ; CHECK-LABEL: test_igtsi_z_store: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK-NEXT: addis r4, r2, .LC0@toc@ha ; CHECK-NEXT: neg r3, r3 ; CHECK-NEXT: ld r4, .LC0@toc@l(r4) |