diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-13 00:41:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-13 00:41:14 +0000 |
commit | a599de241041eebc84867ac8e4cb76668cabd236 (patch) | |
tree | 8d0ded02f0e1dfcb7fec96ad337046553607e14f /lib/Target/X86/X86InstrFormats.td | |
parent | bf9b221c006a99d6f117c1048412859d5637bcde (diff) | |
download | external_llvm-a599de241041eebc84867ac8e4cb76668cabd236.zip external_llvm-a599de241041eebc84867ac8e4cb76668cabd236.tar.gz external_llvm-a599de241041eebc84867ac8e4cb76668cabd236.tar.bz2 |
remove special cases for vmlaunch, vmresume, vmxoff, and swapgs
fix swapgs to be spelled right.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96058 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrFormats.td')
-rw-r--r-- | lib/Target/X86/X86InstrFormats.td | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/Target/X86/X86InstrFormats.td b/lib/Target/X86/X86InstrFormats.td index 8e3e514..8b934e0 100644 --- a/lib/Target/X86/X86InstrFormats.td +++ b/lib/Target/X86/X86InstrFormats.td @@ -30,10 +30,14 @@ def MRM3m : Format<27>; def MRM4m : Format<28>; def MRM5m : Format<29>; def MRM6m : Format<30>; def MRM7m : Format<31>; def MRMInitReg : Format<32>; def MRM_C1 : Format<33>; -def MRM_C8 : Format<34>; -def MRM_C9 : Format<35>; -def MRM_E8 : Format<36>; -def MRM_F0 : Format<37>; +def MRM_C2 : Format<34>; +def MRM_C3 : Format<35>; +def MRM_C4 : Format<36>; +def MRM_C8 : Format<37>; +def MRM_C9 : Format<38>; +def MRM_E8 : Format<39>; +def MRM_F0 : Format<40>; +def MRM_F8 : Format<41>; // ImmType - This specifies the immediate type used by an instruction. This is |