From: Evan Cheng Date: Tue, 23 Jun 2009 17:54:26 +0000 (+0000) Subject: Obvious typo. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=83a2129332250af4648e0501f93cabfa8873e1f4 Obvious typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73967 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index d3611140f17..9790c2bdee6 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -269,9 +269,9 @@ def t2MOVi16 : T2I<(outs GPR:$dst), (ins i32imm:$src), // FIXME: Move (shifted register) is a pseudo-instruction for ASR, LSL, LSR, // ROR, and RRX. Consider splitting into multiple instructions. -def t2MOVs : T2I<(outs GPR:$dst), (ins so_reg:$src), +def t2MOVs : T2I<(outs GPR:$dst), (ins t2_so_reg:$src), "mov $dst, $src", - [(set GPR:$dst, so_reg:$src)]>; + [(set GPR:$dst, t2_so_reg:$src)]>; def t2MOVrx : T2I<(outs GPR:$dst), (ins GPR:$src), "mov $dst, $src, rrx", [(set GPR:$dst, (ARMrrx GPR:$src))]>;