[llvm] r236036 - [SEH] Add an LLVM intrinsic for _exception_info

Reid Kleckner reid at kleckner.net
Tue Apr 28 14:20:42 PDT 2015


Author: rnk
Date: Tue Apr 28 16:20:42 2015
New Revision: 236036

URL: http://llvm.org/viewvc/llvm-project?rev=236036&view=rev
Log:
[SEH] Add an LLVM intrinsic for _exception_info

Eventually, we will lower this out during IR preparation.

Modified:
    llvm/trunk/include/llvm/IR/Intrinsics.td

Modified: llvm/trunk/include/llvm/IR/Intrinsics.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Intrinsics.td?rev=236036&r1=236035&r2=236036&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Intrinsics.td (original)
+++ llvm/trunk/include/llvm/IR/Intrinsics.td Tue Apr 28 16:20:42 2015
@@ -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





More information about the llvm-commits mailing list