From: Anton Korobeynikov Date: Wed, 17 Jun 2009 23:43:36 +0000 (+0000) Subject: Fix asm string from MOVi16 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7c4f7dd43a84b233f94a1fe44faff42ac46b906d;p=oota-llvm.git Fix asm string from MOVi16 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73661 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index 1a38619db72..07c71da46d6 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -156,7 +156,7 @@ multiclass T2I_bin_c_irs { // Move Instructions. // def tMOVi16 : PseudoInst<(outs GPR:$dst), (ins i32imm:$src), - "mov $dst, $src", + "movw $dst, $src", [(set GPR:$dst, imm0_65535:$src)]>, Requires<[HasThumb2]>;