[llvm-commits] [llvm] r58414 - /llvm/trunk/include/llvm/Support/DataTypes.h.in

Bill Wendling isanbard at gmail.com
Wed Oct 29 18:22:58 PDT 2008


Author: void
Date: Wed Oct 29 20:22:58 2008
New Revision: 58414

URL: http://llvm.org/viewvc/llvm-project?rev=58414&view=rev
Log:
Revert r58411. The user needs to #define this when using the JITMemoryManager.h header.

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

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

==============================================================================
--- llvm/trunk/include/llvm/Support/DataTypes.h.in (original)
+++ llvm/trunk/include/llvm/Support/DataTypes.h.in Wed Oct 29 20:22:58 2008
@@ -37,6 +37,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>





More information about the llvm-commits mailing list