diff options
author | Devang Patel <dpatel@apple.com> | 2009-03-03 22:33:54 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-03-03 22:33:54 +0000 |
commit | 70b5e04d85b5b43f9ece8a2acc161a9b47820027 (patch) | |
tree | 95a72ef4be2d1cddc9543d9178e89222aa472108 | |
parent | 9adb01cbc3ef70e7fa8b4d6b1a1229c63082a496 (diff) |
Dbg Intrinsics do not access memory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65975 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Intrinsics.td | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td index 60cb38a677..6d008f3e3b 100644 --- a/include/llvm/Intrinsics.td +++ b/include/llvm/Intrinsics.td @@ -260,14 +260,17 @@ let Properties = [IntrNoMem] in { //===------------------------ Debugger Intrinsics -------------------------===// // -def int_dbg_stoppoint : Intrinsic<[llvm_void_ty], - [llvm_i32_ty, llvm_i32_ty, - llvm_descriptor_ty]>; -def int_dbg_region_start : Intrinsic<[llvm_void_ty], [llvm_descriptor_ty]>; -def int_dbg_region_end : Intrinsic<[llvm_void_ty], [llvm_descriptor_ty]>; -def int_dbg_func_start : Intrinsic<[llvm_void_ty], [llvm_descriptor_ty]>; -def int_dbg_declare : Intrinsic<[llvm_void_ty], - [llvm_descriptor_ty, llvm_descriptor_ty]>; +// None of these intrinsics accesses memory at all. +let Properties = [IntrNoMem] in { + def int_dbg_stoppoint : Intrinsic<[llvm_void_ty], + [llvm_i32_ty, llvm_i32_ty, + llvm_descriptor_ty]>; + def int_dbg_region_start : Intrinsic<[llvm_void_ty], [llvm_descriptor_ty]>; + def int_dbg_region_end : Intrinsic<[llvm_void_ty], [llvm_descriptor_ty]>; + def int_dbg_func_start : Intrinsic<[llvm_void_ty], [llvm_descriptor_ty]>; + def int_dbg_declare : Intrinsic<[llvm_void_ty], + [llvm_descriptor_ty, llvm_descriptor_ty]>; +} //===------------------ Exception Handling Intrinsics----------------------===// // |