aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Intrinsics.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-18 05:53:13 +0000
committerChris Lattner <sabre@nondot.org>2003-10-18 05:53:13 +0000
commit99e7ab72c8909469141358552ece13d701d17274 (patch)
treea4ae61d60cbc33bf65861fb839c585de8f23bea3 /include/llvm/Intrinsics.h
parent8d1a81d524e3c2a79ffb60c847e486f8536c2e6d (diff)
downloadexternal_llvm-99e7ab72c8909469141358552ece13d701d17274.zip
external_llvm-99e7ab72c8909469141358552ece13d701d17274.tar.gz
external_llvm-99e7ab72c8909469141358552ece13d701d17274.tar.bz2
New revised variable argument handling support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9219 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Intrinsics.h')
-rw-r--r--include/llvm/Intrinsics.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Intrinsics.h b/include/llvm/Intrinsics.h
index 12cf378..dbc0273 100644
--- a/include/llvm/Intrinsics.h
+++ b/include/llvm/Intrinsics.h
@@ -18,9 +18,9 @@ namespace LLVMIntrinsic {
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
+ va_start, // Used to implement the va_start macro in C
+ va_end, // Used to implement the va_end macro in C
+ va_copy, // Used to implement the va_copy macro in C
// Setjmp/Longjmp intrinsics...
setjmp, // Used to represent a setjmp call in C