mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
Obvious typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73967 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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,
|
// FIXME: Move (shifted register) is a pseudo-instruction for ASR, LSL, LSR,
|
||||||
// ROR, and RRX. Consider splitting into multiple instructions.
|
// 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",
|
"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),
|
def t2MOVrx : T2I<(outs GPR:$dst), (ins GPR:$src),
|
||||||
"mov $dst, $src, rrx",
|
"mov $dst, $src, rrx",
|
||||||
[(set GPR:$dst, (ARMrrx GPR:$src))]>;
|
[(set GPR:$dst, (ARMrrx GPR:$src))]>;
|
||||||
|
Reference in New Issue
Block a user