diff options
-rw-r--r-- | lib/Target/Sparc/SparcInstr64Bit.td | 2 | ||||
-rw-r--r-- | test/CodeGen/SPARC/64cond.ll | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/Sparc/SparcInstr64Bit.td b/lib/Target/Sparc/SparcInstr64Bit.td index 21ac4a7..a37b158 100644 --- a/lib/Target/Sparc/SparcInstr64Bit.td +++ b/lib/Target/Sparc/SparcInstr64Bit.td @@ -308,7 +308,7 @@ let Predicates = [Is64Bit] in { let Uses = [ICC] in def BPXCC : BranchSP<0, (ins brtarget:$dst, CCOp:$cc), - "bp$cc %xcc, $dst", + "b$cc %xcc, $dst", [(SPbrxcc bb:$dst, imm:$cc)]>; // Conditional moves on %xcc. diff --git a/test/CodeGen/SPARC/64cond.ll b/test/CodeGen/SPARC/64cond.ll index f0f6f9e..a586bce 100644 --- a/test/CodeGen/SPARC/64cond.ll +++ b/test/CodeGen/SPARC/64cond.ll @@ -3,7 +3,7 @@ ; CHECK: cmpri ; CHECK: cmp %i1, 1 -; CHECK: bpe %xcc, +; CHECK: be %xcc, define void @cmpri(i64* %p, i64 %x) { entry: %tobool = icmp eq i64 %x, 1 @@ -19,7 +19,7 @@ if.end: ; CHECK: cmprr ; CHECK: cmp %i1, %i2 -; CHECK: bpgu %xcc, +; CHECK: bgu %xcc, define void @cmprr(i64* %p, i64 %x, i64 %y) { entry: %tobool = icmp ugt i64 %x, %y |