diff options
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/testComparesiltsc.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/testComparesiltsc.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/PowerPC/testComparesiltsc.ll b/llvm/test/CodeGen/PowerPC/testComparesiltsc.ll index d4f267cc12a..08a023302bd 100644 --- a/llvm/test/CodeGen/PowerPC/testComparesiltsc.ll +++ b/llvm/test/CodeGen/PowerPC/testComparesiltsc.ll @@ -11,7 +11,7 @@ ; Function Attrs: norecurse nounwind readnone define signext i32 @test_iltsc(i8 signext %a, i8 signext %b) { ; CHECK-LABEL: test_iltsc: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK-NEXT: sub [[REG:r[0-9]+]], r3, r4 ; CHECK-NEXT: rldicl r3, [[REG]], 1, 63 ; CHECK-NEXT: blr @@ -24,7 +24,7 @@ entry: ; Function Attrs: norecurse nounwind readnone define signext i32 @test_iltsc_sext(i8 signext %a, i8 signext %b) { ; CHECK-LABEL: test_iltsc_sext: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK-NEXT: sub [[REG:r[0-9]+]], r3, r4 ; CHECK-NEXT: sradi r3, [[REG]], 63 ; CHECK-NEXT: blr @@ -48,7 +48,7 @@ entry: ; Function Attrs: norecurse nounwind define void @test_iltsc_store(i8 signext %a, i8 signext %b) { ; CHECK-LABEL: test_iltsc_store: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK: sub [[REG:r[0-9]+]], r3, r4 ; CHECK: rldicl {{r[0-9]+}}, [[REG]], 1, 63 entry: @@ -61,7 +61,7 @@ entry: ; Function Attrs: norecurse nounwind define void @test_iltsc_sext_store(i8 signext %a, i8 signext %b) { ; CHECK-LABEL: test_iltsc_sext_store: -; CHECK: # BB#0: # %entry +; CHECK: # %bb.0: # %entry ; CHECK: sub [[REG:r[0-9]+]], r3, r4 ; CHECK: sradi {{r[0-9]+}}, [[REG]], 63 entry: |