diff options
author | Dave Zarzycki <zarzycki@apple.com> | 2013-03-25 18:59:43 +0000 |
---|---|---|
committer | Dave Zarzycki <zarzycki@apple.com> | 2013-03-25 18:59:43 +0000 |
commit | 9b3939983fd0103b102c7aec0ed08d1e8bd28214 (patch) | |
tree | 8365c85ffd522eed59d9d5767dee049a9dbf1fe7 /lib/Target/X86/X86InstrFormats.td | |
parent | 97a80092d3e4413d43e4632a3ec92fcabfd9b378 (diff) | |
download | external_llvm-9b3939983fd0103b102c7aec0ed08d1e8bd28214.zip external_llvm-9b3939983fd0103b102c7aec0ed08d1e8bd28214.tar.gz external_llvm-9b3939983fd0103b102c7aec0ed08d1e8bd28214.tar.bz2 |
x86 -- add the XTEST instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177888 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrFormats.td')
-rw-r--r-- | lib/Target/X86/X86InstrFormats.td | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/lib/Target/X86/X86InstrFormats.td b/lib/Target/X86/X86InstrFormats.td index 44e574d..4e3e0df 100644 --- a/lib/Target/X86/X86InstrFormats.td +++ b/lib/Target/X86/X86InstrFormats.td @@ -45,14 +45,15 @@ def MRM_D0 : Format<45>; def MRM_D1 : Format<46>; def MRM_D4 : Format<47>; def MRM_D5 : Format<48>; -def MRM_D8 : Format<49>; -def MRM_D9 : Format<50>; -def MRM_DA : Format<51>; -def MRM_DB : Format<52>; -def MRM_DC : Format<53>; -def MRM_DD : Format<54>; -def MRM_DE : Format<55>; -def MRM_DF : Format<56>; +def MRM_D6 : Format<49>; +def MRM_D8 : Format<50>; +def MRM_D9 : Format<51>; +def MRM_DA : Format<52>; +def MRM_DB : Format<53>; +def MRM_DC : Format<54>; +def MRM_DD : Format<55>; +def MRM_DE : Format<56>; +def MRM_DF : Format<57>; // ImmType - This specifies the immediate type used by an instruction. This is // part of the ad-hoc solution used to emit machine instruction encodings by our |