diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-06-21 00:35:15 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-06-21 00:35:15 +0000 |
commit | 48b93b10e30398f22481bf272b76a50b1a5a9bdd (patch) | |
tree | 217f95e6c3e81f84050b5ff59c224779bfd2c96e | |
parent | c4bcd4d964327e52ceadcc9be270718d758f8535 (diff) |
Don't mark the eh.dispatch.setup with a memory access marker. We want this to
stick around even during fast isel.
<rdar://problem/9637156>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133493 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Intrinsics.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td index c1fbce4e05..14396244af 100644 --- a/include/llvm/Intrinsics.td +++ b/include/llvm/Intrinsics.td @@ -312,7 +312,7 @@ 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_dispatch_setup : Intrinsic<[], [llvm_i32_ty], [IntrReadMem]>; +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]>; |