[llvm-commits] [llvm] r83963 - /llvm/trunk/include/llvm/Intrinsics.td
Duncan Sands
baldrick at free.fr
Tue Oct 13 02:24:02 PDT 2009
Author: baldrick
Date: Tue Oct 13 04:24:02 2009
New Revision: 83963
URL: http://llvm.org/viewvc/llvm-project?rev=83963&view=rev
Log:
The eh.exception intrinsic only reads from memory, it doesn't
write to it.
Modified:
llvm/trunk/include/llvm/Intrinsics.td
Modified: llvm/trunk/include/llvm/Intrinsics.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Intrinsics.td?rev=83963&r1=83962&r2=83963&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Intrinsics.td (original)
+++ llvm/trunk/include/llvm/Intrinsics.td Tue Oct 13 04:24:02 2009
@@ -289,7 +289,7 @@
//===------------------ Exception Handling Intrinsics----------------------===//
//
-def int_eh_exception : Intrinsic<[llvm_ptr_ty]>;
+def int_eh_exception : Intrinsic<[llvm_ptr_ty], [], [IntrReadMem]>;
def int_eh_selector_i32 : Intrinsic<[llvm_i32_ty],
[llvm_ptr_ty, llvm_ptr_ty, llvm_vararg_ty]>;
def int_eh_selector_i64 : Intrinsic<[llvm_i64_ty],
More information about the llvm-commits
mailing list