From ecb903c1b57e46a2ee9e08dcd0013cfa33870b60 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Wed, 26 Feb 2014 06:50:27 +0000 Subject: [PATCH] [x86] Add same itinerary to SYSEXIT64 as SYSEXIT for consistency. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202240 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86InstrSystem.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/X86/X86InstrSystem.td b/lib/Target/X86/X86InstrSystem.td index 7b29f2b5092..36ea4150ae3 100644 --- a/lib/Target/X86/X86InstrSystem.td +++ b/lib/Target/X86/X86InstrSystem.td @@ -61,8 +61,8 @@ def SYSENTER : I<0x34, RawFrm, (outs), (ins), "sysenter", [], 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>,