summaryrefslogtreecommitdiff
path: root/include/llvm/Intrinsics.td
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-05-26 20:22:18 +0000
committerJim Grosbach <grosbach@apple.com>2010-05-26 20:22:18 +0000
commit23ff7cff52702a8bff904d8ab4c9ca67cc19d6ca (patch)
tree71edc7627c7f1e0debfad9797b2cd7f04109c2ed /include/llvm/Intrinsics.td
parent394427b014a7126e56f3ee411993f08677d93c83 (diff)
downloadllvm-23ff7cff52702a8bff904d8ab4c9ca67cc19d6ca.tar.gz
llvm-23ff7cff52702a8bff904d8ab4c9ca67cc19d6ca.tar.bz2
llvm-23ff7cff52702a8bff904d8ab4c9ca67cc19d6ca.tar.xz
Adjust eh.sjlj.setjmp to properly have a chain and to have an opcode entry in
ISD::. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Intrinsics.td')
-rw-r--r--include/llvm/Intrinsics.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td
index cd0dd31d1f..2b4df54c61 100644
--- a/include/llvm/Intrinsics.td
+++ b/include/llvm/Intrinsics.td
@@ -306,12 +306,12 @@ def int_eh_unwind_init: Intrinsic<[]>,
def int_eh_dwarf_cfa : Intrinsic<[llvm_ptr_ty], [llvm_i32_ty]>;
let Properties = [IntrNoMem] in {
- def int_eh_sjlj_setjmp : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty]>,
- GCCBuiltin<"__builtin_setjmp">;
def int_eh_sjlj_lsda : Intrinsic<[llvm_ptr_ty]>;
def int_eh_sjlj_callsite: Intrinsic<[], [llvm_i32_ty]>;
}
-def int_eh_sjlj_longjmp : Intrinsic<[], [llvm_ptr_ty], [IntrWriteArgMem]>,
+def int_eh_sjlj_setjmp : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty]>,
+ GCCBuiltin<"__builtin_setjmp">;
+def int_eh_sjlj_longjmp : Intrinsic<[], [llvm_ptr_ty]>,
GCCBuiltin<"__builtin_longjmp">;
//===---------------- Generic Variable Attribute Intrinsics----------------===//