diff options
author | Reid Kleckner <rnk@google.com> | 2015-12-15 21:41:34 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2015-12-15 21:41:34 +0000 |
commit | 08bfe00a1994610fe99bd27a914a480d8c0a4113 (patch) | |
tree | 21efb34951d20193ed50715ed3ac641bee812b9a /include | |
parent | b46bb541f5f78520b08c1b50463c3517041d26de (diff) |
[WinEH] Remove unused intrinsic llvm.x86.seh.restoreframe
We can clean this up now that we have the X86 CATCHRET instruction to
restore the FP, SP, and BP.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255677 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/IR/IntrinsicsX86.td | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/IR/IntrinsicsX86.td b/include/llvm/IR/IntrinsicsX86.td index 370b527c6f7..6d975fbf080 100644 --- a/include/llvm/IR/IntrinsicsX86.td +++ b/include/llvm/IR/IntrinsicsX86.td @@ -25,11 +25,6 @@ let TargetPrefix = "x86" in { // Marks the EH registration node created in LLVM IR prior to code generation. def int_x86_seh_ehregnode : Intrinsic<[], [llvm_ptr_ty], []>; - // Restores the frame, base, and stack pointers as necessary after recovering - // from an exception. Any block resuming control flow in the parent function - // should call this before accessing any stack memory. - def int_x86_seh_restoreframe : Intrinsic<[], [], []>; - // Given a pointer to the end of an EH registration object, returns the true // parent frame address that can be used with llvm.localrecover. def int_x86_seh_recoverfp : Intrinsic<[llvm_ptr_ty], |