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:
Evan Cheng 2007-09-26 06:38:29 +00:00
parent 1efa1696e3
commit 8d5562be30
2 changed files with 2 additions and 2 deletions

View File

@ -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", []>;

View File

@ -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", []>;