Typos: POPQ -> POPFQ, POPD -> POPFD.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 26 Sep 2007 06:38:29 +0000 (06:38 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 26 Sep 2007 06:38:29 +0000 (06:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42348 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrInfo.td
lib/Target/X86/X86InstrX86-64.td

index 7bd997f1993ba764501147d0c0388edbc4b302d5..4ddff1486b74430695bf6e859085059dae801d6c 100644 (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 POP    : 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", []>;
 
index 92965d3b7ee36135ff8e16cae938cf0e9c6dc50f..6b1d4094801074e76863c0389be305dbf9ca8b66 100644 (file)
@@ -124,7 +124,7 @@ def PUSH64r  : I<0x50, AddRegFrm,
 }
 
 let Defs = [RSP, EFLAGS], Uses = [RSP] in
-def POP    : 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", []>;