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 | 6ca5fd3f30081853cfcf7f83a310f94aac2c5e17 (patch) | |
tree | 1533d2a16aab2a1ef63d9a189de418b44077fe25 /lib | |
parent | 2e2630b4623965f890f1f263119e3e495b7bd676 (diff) | |
download | external_llvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.zip external_llvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.tar.gz external_llvm-6ca5fd3f30081853cfcf7f83a310f94aac2c5e17.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183537 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/Sparc/SparcInstr64Bit.td | 2 |
1 files changed, 1 insertions, 1 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. |