From: Johnny Chen Date: Mon, 1 Feb 2010 23:06:04 +0000 (+0000) Subject: MOVi16 should also be marked as a UnaryDP instruction, i.e., it doesn't have a X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=92e63d817f9aa35afc5e37af8fa31e22463e61c4;p=oota-llvm.git MOVi16 should also be marked as a UnaryDP instruction, i.e., it doesn't have a Rn operand. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95025 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index d2ccba638c0..e7ee61f3b87 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -1015,7 +1015,7 @@ def MOVi16 : AI1<0b1000, (outs GPR:$dst), (ins i32imm:$src), DPFrm, IIC_iMOVi, "movw", "\t$dst, $src", [(set GPR:$dst, imm0_65535:$src)]>, - Requires<[IsARM, HasV6T2]> { + Requires<[IsARM, HasV6T2]>, UnaryDP { let Inst{20} = 0; let Inst{25} = 1; }