From 8439b144e6bae1a44f6359f54acf3d6c822ba3e8 Mon Sep 17 00:00:00 2001 From: Roman Divacky Date: Fri, 7 Jun 2013 17:46:57 +0000 Subject: [PATCH] Fix a typo in asm string of BP* family of instructions. With this fix I am able to compile/assemble/link/run /bin/echo from FreeBSD. llvm-svn: 183537 --- lib/Target/Sparc/SparcInstr64Bit.td | 2 +- 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 21ac4a7dc16..a37b1583dc8 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 f0f6f9e749a..a586bce5754 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