From: Bill Wendling Date: Tue, 21 Jun 2011 00:35:15 +0000 (+0000) Subject: Don't mark the eh.dispatch.setup with a memory access marker. We want this to X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=48b93b10e30398f22481bf272b76a50b1a5a9bdd;p=oota-llvm.git Don't mark the eh.dispatch.setup with a memory access marker. We want this to stick around even during fast isel. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133493 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td index c1fbce4e054..14396244afb 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]>;