diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-05 05:35:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-05 05:35:34 +0000 |
commit | 6ac18751a670ba98d3fb75d5d06998e558704768 (patch) | |
tree | 57c554f23dba6d9cff03e9aa253f7c4c392ce401 | |
parent | 94276b6f934df195ea00000224579f4b9bfa7c5f (diff) |
Add some intrinsics
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10690 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Intrinsics.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/Intrinsics.h b/include/llvm/Intrinsics.h index 8ecb6c42ee..f55c9c0254 100644 --- a/include/llvm/Intrinsics.h +++ b/include/llvm/Intrinsics.h @@ -37,6 +37,12 @@ namespace Intrinsic { sigsetjmp, // Used to represent a sigsetjmp call in C siglongjmp, // Used to represent a siglongjmp call in C + // Debugging intrinsics... + dbg_stoppoint, // Represents source lines and breakpointable places + dbg_region_start, // Start of a region + dbg_region_end, // End of a region + dbg_func_start, // Start of a function + //===------------------------------------------------------------------===// // This section defines intrinsic functions used to represent Alpha // instructions... |