[llvm-commits] [llvm] r58131 - /llvm/trunk/include/llvm/Support/DataTypes.h.cmake

Oscar Fuentes ofv at wanadoo.es
Fri Oct 24 20:25:11 PDT 2008


Author: ofv
Date: Fri Oct 24 22:25:11 2008
New Revision: 58131

URL: http://llvm.org/viewvc/llvm-project?rev=58131&view=rev
Log:
CMake: Sync'ed DataTypes.h.cmake with DataTypes.h.in.

Modified:
    llvm/trunk/include/llvm/Support/DataTypes.h.cmake

Modified: llvm/trunk/include/llvm/Support/DataTypes.h.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/DataTypes.h.cmake?rev=58131&r1=58130&r2=58131&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/DataTypes.h.cmake (original)
+++ llvm/trunk/include/llvm/Support/DataTypes.h.cmake Fri Oct 24 22:25:11 2008
@@ -40,6 +40,11 @@
 # error "Must #define __STDC_LIMIT_MACROS before #including Support/DataTypes.h"
 #endif
 
+#if !defined(__STDC_CONSTANT_MACROS)
+# error "Must #define __STDC_CONSTANT_MACROS before " \
+        "#including Support/DataTypes.h"
+#endif
+
 // Note that <inttypes.h> includes <stdint.h>, if this is a C99 system.
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
@@ -108,6 +113,14 @@
 #define INT32_MAX 2147483647
 #define INT32_MIN -2147483648
 #define UINT32_MAX 4294967295U
+#define INT8_C(C)   C
+#define UINT8_C(C)  C
+#define INT16_C(C)  C
+#define UINT16_C(C) C
+#define INT32_C(C)  C
+#define UINT32_C(C) C ## U
+#define INT64_C(C)  ((int64_t) C ## LL)
+#define UINT64_C(C) ((uint64_t) C ## ULL)
 #endif /* _MSC_VER */
 
 /* Set defaults for constants which we cannot find. */





More information about the llvm-commits mailing list