diff options
author | Owen Anderson <resistor@mac.com> | 2011-08-15 20:08:25 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-08-15 20:08:25 +0000 |
commit | 61a3ece665faaa0bc42b1a8bfaf2fe07d6ad4a0e (patch) | |
tree | a6b0c72adced722667d2f2db5db2ffaa380c430a /llvm/lib | |
parent | 109c4c7f718746ad6705f8b3fb68fea093abff41 (diff) | |
download | bcm5719-llvm-61a3ece665faaa0bc42b1a8bfaf2fe07d6ad4a0e.tar.gz bcm5719-llvm-61a3ece665faaa0bc42b1a8bfaf2fe07d6ad4a0e.zip |
Fix incorrect encoding of UMAAL and friends. Patch by James Molloy.
llvm-svn: 137641
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td index 9e0e56e6400..1377928355d 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.td +++ b/llvm/lib/Target/ARM/ARMInstrInfo.td @@ -3461,8 +3461,8 @@ def UMAAL : AMul1I <0b0000010, (outs GPR:$RdLo, GPR:$RdHi), bits<4> RdHi; bits<4> Rm; bits<4> Rn; - let Inst{19-16} = RdLo; - let Inst{15-12} = RdHi; + let Inst{19-16} = RdHi; + let Inst{15-12} = RdLo; let Inst{11-8} = Rm; let Inst{3-0} = Rn; } |