summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-04-01 23:30:25 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-04-01 23:30:25 +0000
commit103bf951a4d221a9cff4a5a4766754cf0cb126f4 (patch)
tree9ada412b5f1ab3715ccd248b87955c4f9629f12d /lib
parent6da3fe68c6e3f5abd520a1bfc8dd8429e6ec6389 (diff)
downloadllvm-103bf951a4d221a9cff4a5a4766754cf0cb126f4.tar.gz
llvm-103bf951a4d221a9cff4a5a4766754cf0cb126f4.tar.bz2
llvm-103bf951a4d221a9cff4a5a4766754cf0cb126f4.tar.xz
Fixed MOVr for "should be" encoding bits for Inst{19-16} = 0b0000.
rdar://problem/9224276 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128749 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMInstrInfo.td1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td
index 28b53ca67c..f7182c397d 100644
--- a/lib/Target/ARM/ARMInstrInfo.td
+++ b/lib/Target/ARM/ARMInstrInfo.td
@@ -1983,6 +1983,7 @@ def MOVr : AsI1<0b1101, (outs GPR:$Rd), (ins GPR:$Rm), DPFrm, IIC_iMOVr,
bits<4> Rd;
bits<4> Rm;
+ let Inst{19-16} = 0b0000;
let Inst{11-4} = 0b00000000;
let Inst{25} = 0;
let Inst{3-0} = Rm;