diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-10-10 17:08:47 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-10-10 17:08:47 +0000 |
commit | 5cf6fd422e1e7c0fc88dd058973cfc7e66b936e8 (patch) | |
tree | d07d83caced6e36397809c21077b13abc75c06ad /llvm | |
parent | f368fb40dff9802a3a3548151840d4fa750b1d41 (diff) | |
download | bcm5719-llvm-5cf6fd422e1e7c0fc88dd058973cfc7e66b936e8.tar.gz bcm5719-llvm-5cf6fd422e1e7c0fc88dd058973cfc7e66b936e8.zip |
Mark the llvm.eh.sjlj.functioncontext intrinsic as reading memory so that fast
isel doesn't ignore it.
llvm-svn: 141548
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Intrinsics.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm/Intrinsics.td b/llvm/include/llvm/Intrinsics.td index e06ca4a6c5e..d70f9153fd8 100644 --- a/llvm/include/llvm/Intrinsics.td +++ b/llvm/include/llvm/Intrinsics.td @@ -324,11 +324,11 @@ def int_eh_dwarf_cfa : Intrinsic<[llvm_ptr_ty], [llvm_i32_ty]>; let Properties = [IntrNoMem] in { def int_eh_sjlj_lsda : Intrinsic<[llvm_ptr_ty]>; def int_eh_sjlj_callsite : Intrinsic<[], [llvm_i32_ty]>; - def int_eh_sjlj_functioncontext : Intrinsic<[], [llvm_ptr_ty]>; } -def int_eh_sjlj_dispatch_setup : Intrinsic<[], [llvm_i32_ty]>; -def int_eh_sjlj_setjmp : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty]>; -def int_eh_sjlj_longjmp : Intrinsic<[], [llvm_ptr_ty]>; +def int_eh_sjlj_functioncontext : Intrinsic<[], [llvm_ptr_ty]>; +def int_eh_sjlj_dispatch_setup : Intrinsic<[], [llvm_i32_ty]>; +def int_eh_sjlj_setjmp : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty]>; +def int_eh_sjlj_longjmp : Intrinsic<[], [llvm_ptr_ty]>; //===---------------- Generic Variable Attribute Intrinsics----------------===// // |