diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-10-30 00:11:55 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-10-30 00:11:55 +0000 |
commit | fb309cb2d65d9fcf1289aa636c1b9860dc190cac (patch) | |
tree | 8a8a38850cfe203c47b0a13be857efebbc316598 | |
parent | 0f282439be688babbbf6d54151ddf9a7ebbf3637 (diff) | |
download | external_llvm-fb309cb2d65d9fcf1289aa636c1b9860dc190cac.zip external_llvm-fb309cb2d65d9fcf1289aa636c1b9860dc190cac.tar.gz external_llvm-fb309cb2d65d9fcf1289aa636c1b9860dc190cac.tar.bz2 |
Revert part of r58048. It was breaking on SnowLeopard claiming that
"__STDC_CONSTANT_MACROS" needs to be #defined first.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58411 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/DataTypes.h.in | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/Support/DataTypes.h.in b/include/llvm/Support/DataTypes.h.in index 72063f7..b195930 100644 --- a/include/llvm/Support/DataTypes.h.in +++ b/include/llvm/Support/DataTypes.h.in @@ -37,11 +37,6 @@ # 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> |