[llvm-commits] CVS: llvm/include/llvm/Intrinsics.h
Chris Lattner
lattner at cs.uiuc.edu
Sat May 17 17:27:01 PDT 2003
Changes in directory llvm/include/llvm:
Intrinsics.h updated: 1.1 -> 1.2
---
Log message:
Add support for setjmp/longjmp primitives
Patch checked in for Bill Wendling :)
---
Diffs of the changes:
Index: llvm/include/llvm/Intrinsics.h
diff -u llvm/include/llvm/Intrinsics.h:1.1 llvm/include/llvm/Intrinsics.h:1.2
--- llvm/include/llvm/Intrinsics.h:1.1 Wed May 7 22:33:54 2003
+++ llvm/include/llvm/Intrinsics.h Sat May 17 17:26:26 2003
@@ -12,9 +12,13 @@
namespace LLVMIntrinsic {
enum ID {
not_intrinsic = 0, // Must be zero
+
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
+
+ setjmp, // Used to represent a setjmp call in C
+ longjmp, // Used to represent a longjmp call in C
};
}
More information about the llvm-commits
mailing list