diff options
author | Jim Grosbach <grosbach@apple.com> | 2009-05-14 00:46:35 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2009-05-14 00:46:35 +0000 |
commit | f95701286664df01a5683a71c9a02c056fed0aa7 (patch) | |
tree | 0c52d3994a8442264120c900acabea74965ae4f6 /include/llvm | |
parent | e340e84196af8618b623d499a040150373ae5da4 (diff) | |
download | external_llvm-f95701286664df01a5683a71c9a02c056fed0aa7.zip external_llvm-f95701286664df01a5683a71c9a02c056fed0aa7.tar.gz external_llvm-f95701286664df01a5683a71c9a02c056fed0aa7.tar.bz2 |
Update the names of the exception handling sjlj instrinsics to
llvm.eh.sjlj.* for better clarity as to their purpose and scope. Add
a description of llvm.eh.sjlj.setjmp to ExceptionHandling.html.
(llvm.eh.sjlj.longjmp documentation coming when that implementation is
added).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Intrinsics.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td index 7c869f0..bce3ce0 100644 --- a/include/llvm/Intrinsics.td +++ b/include/llvm/Intrinsics.td @@ -300,8 +300,8 @@ def int_eh_unwind_init: Intrinsic<[llvm_void_ty]>, def int_eh_dwarf_cfa : Intrinsic<[llvm_ptr_ty], [llvm_i32_ty]>; let Properties = [IntrNoMem] in { -def int_builtinsetjmp : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty]>; -def int_builtinlongjmp : Intrinsic<[llvm_void_ty], [llvm_ptr_ty, llvm_i32_ty]>; +def int_eh_sjlj_setjmp : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty]>; +def int_eh_sjlj_longjmp : Intrinsic<[llvm_void_ty], [llvm_ptr_ty, llvm_i32_ty]>; } //===---------------- Generic Variable Attribute Intrinsics----------------===// |