diff options
author | Sean Callanan <scallanan@apple.com> | 2009-09-15 23:37:51 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2009-09-15 23:37:51 +0000 |
commit | 356aed540cda52727440d37dbbbe22cf140b7066 (patch) | |
tree | afbe21d357a5828b98292af08cc7ba62276c80ae | |
parent | bfd1e50c4f51e5f22ba68f28172b0ed9ab66a61a (diff) |
Added far return instructions (that is, returns to
code in other segments) to the Intel instruction
tables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81953 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 66bfdcdb34..d988406b63 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -566,6 +566,10 @@ let isTerminator = 1, isReturn = 1, isBarrier = 1, def RETI : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt, variable_ops), "ret\t$amt", [(X86retflag timm:$amt)]>; + def LRET : I <0xCB, RawFrm, (outs), (ins), + "lret", []>; + def LRETI : Ii16<0xCA, RawFrm, (outs), (ins i16imm:$amt), + "lret\t$amt", []>; } // All branches are RawFrm, Void, Branch, and Terminators |