diff options
author | Roman Divacky <rdivacky@freebsd.org> | 2013-06-07 17:46:57 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@freebsd.org> | 2013-06-07 17:46:57 +0000 |
commit | 158d8069ad3cf660dceac4e4e1b150f5cb03289c (patch) | |
tree | 997b5451c444258a9a5ad111b592d0d66d6a9779 /llvm/lib/Target/Sparc | |
parent | ee4ca9ba0e249443a4c772a98635c69d39687819 (diff) | |
download | bcm5719-llvm-158d8069ad3cf660dceac4e4e1b150f5cb03289c.tar.gz bcm5719-llvm-158d8069ad3cf660dceac4e4e1b150f5cb03289c.zip |
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
Diffstat (limited to 'llvm/lib/Target/Sparc')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcInstr64Bit.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Sparc/SparcInstr64Bit.td b/llvm/lib/Target/Sparc/SparcInstr64Bit.td index 21ac4a7dc16..a37b1583dc8 100644 --- a/llvm/lib/Target/Sparc/SparcInstr64Bit.td +++ b/llvm/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. |