summaryrefslogtreecommitdiff
path: root/include/llvm/Intrinsics.td
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-01-31 01:58:48 +0000
committerBill Wendling <isanbard@gmail.com>2012-01-31 01:58:48 +0000
commitefd564fbd6b38964f717bf1c34f37f441eb5cf36 (patch)
tree68a0dff7586b8ac2e4442f89bd63866eda5ace3c /include/llvm/Intrinsics.td
parent13b1c31412372ef3790934ca213546fec595fbbc (diff)
downloadllvm-efd564fbd6b38964f717bf1c34f37f441eb5cf36.tar.gz
llvm-efd564fbd6b38964f717bf1c34f37f441eb5cf36.tar.bz2
llvm-efd564fbd6b38964f717bf1c34f37f441eb5cf36.tar.xz
Remove the now-dead llvm.eh.exception and llvm.eh.selector intrinsics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Intrinsics.td')
-rw-r--r--include/llvm/Intrinsics.td4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td
index 5f318620c6..069f907d4f 100644
--- a/include/llvm/Intrinsics.td
+++ b/include/llvm/Intrinsics.td
@@ -304,10 +304,6 @@ let Properties = [IntrNoMem] in {
//===------------------ Exception Handling Intrinsics----------------------===//
//
-def int_eh_exception : Intrinsic<[llvm_ptr_ty], [], [IntrReadMem]>;
-def int_eh_selector : Intrinsic<[llvm_i32_ty],
- [llvm_ptr_ty, llvm_ptr_ty, llvm_vararg_ty]>;
-def int_eh_resume : Intrinsic<[], [llvm_ptr_ty, llvm_i32_ty], [Throws]>;
// The result of eh.typeid.for depends on the enclosing function, but inside a
// given function it is 'const' and may be CSE'd etc.