diff options
Diffstat (limited to 'include/llvm/Intrinsics.h')
-rw-r--r-- | include/llvm/Intrinsics.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/Intrinsics.h b/include/llvm/Intrinsics.h index 81c25b8102..5c14362918 100644 --- a/include/llvm/Intrinsics.h +++ b/include/llvm/Intrinsics.h @@ -17,10 +17,17 @@ namespace LLVMIntrinsic { enum ID { not_intrinsic = 0, // Must be zero + // Varargs handling intrinsics... va_start, // Used to represent a va_start call in C va_end, // Used to represent a va_end call in C va_copy, // Used to represent a va_copy call in C + // Exception handling intrinsics... + exc_throw, // Throw an exception + exc_rethrow, // Rethrow a caught exception + exc_getcurrent, // Get the current pending exception + + // Setjmp/Longjmp intrinsics... setjmp, // Used to represent a setjmp call in C longjmp, // Used to represent a longjmp call in C sigsetjmp, // Used to represent a sigsetjmp call in C |