[llvm] r202240 - [x86] Add same itinerary to SYSEXIT64 as SYSEXIT for consistency.
Craig Topper
craig.topper at gmail.com
Tue Feb 25 22:50:27 PST 2014
Author: ctopper
Date: Wed Feb 26 00:50:27 2014
New Revision: 202240
URL: http://llvm.org/viewvc/llvm-project?rev=202240&view=rev
Log:
[x86] Add same itinerary to SYSEXIT64 as SYSEXIT for consistency.
Modified:
llvm/trunk/lib/Target/X86/X86InstrSystem.td
Modified: llvm/trunk/lib/Target/X86/X86InstrSystem.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrSystem.td?rev=202240&r1=202239&r2=202240&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrSystem.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrSystem.td Wed Feb 26 00:50:27 2014
@@ -61,8 +61,8 @@ def SYSENTER : I<0x34, RawFrm, (outs), (
def SYSEXIT : I<0x35, RawFrm, (outs), (ins), "sysexit{l}", [],
IIC_SYS_ENTER_EXIT>, TB;
-def SYSEXIT64 :RI<0x35, RawFrm, (outs), (ins), "sysexit{q}", []>, TB,
- Requires<[In64BitMode]>;
+def SYSEXIT64 :RI<0x35, RawFrm, (outs), (ins), "sysexit{q}", [],
+ IIC_SYS_ENTER_EXIT>, TB, Requires<[In64BitMode]>;
def IRET16 : I<0xcf, RawFrm, (outs), (ins), "iret{w}", [], IIC_IRET>, OpSize16;
def IRET32 : I<0xcf, RawFrm, (outs), (ins), "iret{l|d}", [], IIC_IRET>,
More information about the llvm-commits
mailing list