diff options
| author | Craig Topper <craig.topper@gmail.com> | 2014-02-26 06:50:27 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2014-02-26 06:50:27 +0000 |
| commit | 9df497e5689ec0dd4aef2a67a45ef8681600e8b3 (patch) | |
| tree | ccb8db7832618217d70dacd049bfc18de355e08b | |
| parent | 9cd9ad6b9d4adc73cf51b967bfbfa8c25df9909e (diff) | |
| download | bcm5719-llvm-9df497e5689ec0dd4aef2a67a45ef8681600e8b3.tar.gz bcm5719-llvm-9df497e5689ec0dd4aef2a67a45ef8681600e8b3.zip | |
[x86] Add same itinerary to SYSEXIT64 as SYSEXIT for consistency.
llvm-svn: 202240
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrSystem.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/X86/X86InstrSystem.td b/llvm/lib/Target/X86/X86InstrSystem.td index 7b29f2b5092..36ea4150ae3 100644 --- a/llvm/lib/Target/X86/X86InstrSystem.td +++ b/llvm/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>, |

