mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Typos: POPQ -> POPFQ, POPD -> POPFD.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42348 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1efa1696e3
commit
8d5562be30
@ -430,7 +430,7 @@ def PUSH32r : I<0x50, AddRegFrm, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
|
||||
}
|
||||
|
||||
let Defs = [ESP, EFLAGS], Uses = [ESP] in
|
||||
def POPD : I<0x9D, RawFrm, (outs), (ins), "popfd", []>;
|
||||
def POPFD : I<0x9D, RawFrm, (outs), (ins), "popfd", []>;
|
||||
let Defs = [ESP], Uses = [ESP, EFLAGS] in
|
||||
def PUSHFD : I<0x9C, RawFrm, (outs), (ins), "pushfd", []>;
|
||||
|
||||
|
@ -124,7 +124,7 @@ def PUSH64r : I<0x50, AddRegFrm,
|
||||
}
|
||||
|
||||
let Defs = [RSP, EFLAGS], Uses = [RSP] in
|
||||
def POPQ : I<0x9D, RawFrm, (outs), (ins), "popfq", []>, REX_W;
|
||||
def POPFQ : I<0x9D, RawFrm, (outs), (ins), "popfq", []>, REX_W;
|
||||
let Defs = [RSP], Uses = [RSP, EFLAGS] in
|
||||
def PUSHFQ : I<0x9C, RawFrm, (outs), (ins), "pushfq", []>;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user