[llvm-commits] CVS: llvm/include/llvm/Intrinsics.h

Chris Lattner lattner at cs.uiuc.edu
Fri Mar 12 18:24:00 PST 2004


Changes in directory llvm/include/llvm:

Intrinsics.h updated: 1.18 -> 1.19

---
Log message:

Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* to 
Intrinsic::va*.  This avoid conflicting with macros in the stdlib.h file.


---
Diffs of the changes:  (+3 -3)

Index: llvm/include/llvm/Intrinsics.h
diff -u llvm/include/llvm/Intrinsics.h:1.18 llvm/include/llvm/Intrinsics.h:1.19
--- llvm/include/llvm/Intrinsics.h:1.18	Fri Feb 13 20:47:12 2004
+++ llvm/include/llvm/Intrinsics.h	Fri Mar 12 18:23:14 2004
@@ -27,9 +27,9 @@
     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





More information about the llvm-commits mailing list