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 | 53d7dcbee752b1fa2280720de05043310ea0e623 (patch) | |
tree | 9f76ad0bb7730660ad58c47eeb87b1a5495921aa | |
parent | 3c01d683e344f1b861bcb59aa1b16a55365ad062 (diff) | |
download | bcm5719-llvm-53d7dcbee752b1fa2280720de05043310ea0e623.tar.gz bcm5719-llvm-53d7dcbee752b1fa2280720de05043310ea0e623.zip |
Add some intrinsics
llvm-svn: 10690
-rw-r--r-- | llvm/include/llvm/Intrinsics.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/include/llvm/Intrinsics.h b/llvm/include/llvm/Intrinsics.h index 8ecb6c42ee5..f55c9c0254d 100644 --- a/llvm/include/llvm/Intrinsics.h +++ b/llvm/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... |