aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Intrinsics.td
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-09-08 21:12:47 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-09-08 21:12:47 +0000
commit1ec04ee1d8cfcb49b0693bae8f1d32c4aec4a69e (patch)
tree4eaaf387fc22ca03dd37fdeff67ed7c5081f8ee3 /include/llvm/Intrinsics.td
parent566f9d9315c544560b0251330d6271e1c51e9397 (diff)
downloadexternal_llvm-1ec04ee1d8cfcb49b0693bae8f1d32c4aec4a69e.zip
external_llvm-1ec04ee1d8cfcb49b0693bae8f1d32c4aec4a69e.tar.gz
external_llvm-1ec04ee1d8cfcb49b0693bae8f1d32c4aec4a69e.tar.bz2
Reapply 55899: First draft of EH support on x86/64-linux
Now with fix, which prevents subtle codegen bug to trigger on darwin. No fix for bug though, it's still there. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55955 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Intrinsics.td')
-rw-r--r--include/llvm/Intrinsics.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td
index 5dd1d61..36d8337 100644
--- a/include/llvm/Intrinsics.td
+++ b/include/llvm/Intrinsics.td
@@ -255,8 +255,8 @@ def int_eh_selector_i64 : Intrinsic<[llvm_i64_ty, llvm_ptr_ty, llvm_ptr_ty,
def int_eh_typeid_for_i32 : Intrinsic<[llvm_i32_ty, llvm_ptr_ty]>;
def int_eh_typeid_for_i64 : Intrinsic<[llvm_i64_ty, llvm_ptr_ty]>;
-def int_eh_return : Intrinsic<[llvm_void_ty, llvm_i32_ty, llvm_ptr_ty]>,
- GCCBuiltin<"__builtin_eh_return">;
+def int_eh_return_i32 : Intrinsic<[llvm_void_ty, llvm_i32_ty, llvm_ptr_ty]>;
+def int_eh_return_i64 : Intrinsic<[llvm_void_ty, llvm_i64_ty, llvm_ptr_ty]>;
def int_eh_unwind_init: Intrinsic<[llvm_void_ty]>,
GCCBuiltin<"__builtin_unwind_init">;