From 9c5cacccb1b6bb6a10b0f11d06dcdbd47b045b5b Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Tue, 28 Apr 2015 21:20:42 +0000 Subject: [PATCH] [SEH] Add an LLVM intrinsic for _exception_info Eventually, we will lower this out during IR preparation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236036 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/Intrinsics.td | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/IR/Intrinsics.td b/include/llvm/IR/Intrinsics.td index b4b98768226..d778fbede0b 100644 --- a/include/llvm/IR/Intrinsics.td +++ b/include/llvm/IR/Intrinsics.td @@ -422,6 +422,7 @@ def int_eh_endcatch : Intrinsic<[], []>; def int_eh_actions : Intrinsic<[llvm_ptr_ty], [llvm_vararg_ty], []>; def int_eh_exceptioncode : Intrinsic<[llvm_i32_ty], []>; +def int_eh_exceptioninfo : Intrinsic<[llvm_ptr_ty], []>; // __builtin_unwind_init is an undocumented GCC intrinsic that causes all // callee-saved registers to be saved and restored (regardless of whether they -- 2.34.1