diff options
author | Sean Callanan <scallanan@apple.com> | 2009-09-12 02:52:41 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2009-09-12 02:52:41 +0000 |
commit | 2a46f3678e9fea3cf25b08eb6fe5d9be6b24d2c7 (patch) | |
tree | cf9b5dc43c93ab0d5ba933255e9f3941d612dee0 | |
parent | 6f8f462ba5ce2c567cff13c77761ea6ccc8d277d (diff) |
Added the WAIT instruction to the Intel tables,
for the purposes of the disassembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81603 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index fbb5fa938e..d03b29f9db 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -839,6 +839,7 @@ def SYSENTER : I<0x34, RawFrm, def SYSEXIT : I<0x35, RawFrm, (outs), (ins), "sysexit", []>, TB; +def WAIT : I<0x9B, RawFrm, (outs), (ins), "wait", []>; //===----------------------------------------------------------------------===// |