aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Sparc
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-02 07:56:15 +0000
committerChris Lattner <sabre@nondot.org>2006-02-02 07:56:15 +0000
commit4032cf049d702545d7498d6b10e1d241037e2030 (patch)
tree88ea2419650d913b52be8d0366d1f6438c60cf85 /lib/Target/Sparc
parent275b8846d519ac91777e6cad00b8650b252d2ed6 (diff)
downloadexternal_llvm-4032cf049d702545d7498d6b10e1d241037e2030.zip
external_llvm-4032cf049d702545d7498d6b10e1d241037e2030.tar.gz
external_llvm-4032cf049d702545d7498d6b10e1d241037e2030.tar.bz2
correct an opcode
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25905 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc')
-rw-r--r--lib/Target/Sparc/SparcInstrInfo.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Sparc/SparcInstrInfo.td b/lib/Target/Sparc/SparcInstrInfo.td
index 61bbfbd..1f54512 100644
--- a/lib/Target/Sparc/SparcInstrInfo.td
+++ b/lib/Target/Sparc/SparcInstrInfo.td
@@ -739,12 +739,12 @@ let Predicates = [HasV9], isTwoAddress = 1 in {
def MOVFCCrr
: Pseudo<(ops IntRegs:$dst, IntRegs:$T, IntRegs:$F, V8CC:$cc),
- "movf$cc %fcc, $F, $dst",
+ "mov$cc %fcc, $F, $dst",
[(set IntRegs:$dst,
(V8selectfcc IntRegs:$F, IntRegs:$T, imm:$cc, FCC))]>;
def MOVFCCri
: Pseudo<(ops IntRegs:$dst, IntRegs:$T, i32imm:$F, V8CC:$cc),
- "movf$cc %fcc, $F, $dst",
+ "mov$cc %fcc, $F, $dst",
[(set IntRegs:$dst,
(V8selectfcc simm11:$F, IntRegs:$T, imm:$cc, FCC))]>;