diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-13 00:24:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-13 00:24:00 +0000 |
commit | 317201d77354e6fc9547468ce827e1a7c30761d7 (patch) | |
tree | 17c59cf91f789591326f3f7b35df47f0e24a09a2 /include | |
parent | bfe492b5c20a843028fb8e1736f81e703f789c1a (diff) | |
download | external_llvm-317201d77354e6fc9547468ce827e1a7c30761d7.zip external_llvm-317201d77354e6fc9547468ce827e1a7c30761d7.tar.gz external_llvm-317201d77354e6fc9547468ce827e1a7c30761d7.tar.bz2 |
Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* to
Intrinsic::va*. This avoid conflicting with macros in the stdlib.h file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12356 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Intrinsics.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Intrinsics.h b/include/llvm/Intrinsics.h index cef43aa..1436542 100644 --- a/include/llvm/Intrinsics.h +++ b/include/llvm/Intrinsics.h @@ -27,9 +27,9 @@ namespace Intrinsic { not_intrinsic = 0, // Must be zero // Varargs handling intrinsics... - 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 + vastart, // Used to implement the va_start macro in C + vaend, // Used to implement the va_end macro in C + vacopy, // Used to implement the va_copy macro in C // Code generator intrinsics... returnaddress, // Yields the return address of a dynamic call frame |