Author: lattner
Date: Sat Feb 28 12:53:33 2009
New Revision: 65704
URL: http://llvm.org/viewvc/llvm-project?rev=65704&view=rev
Log:
fix inverted conditional, rdar://6633188
Modified:
cfe/trunk/lib/Headers/stdint.h
Modified: cfe/trunk/lib/Headers/stdint.h
URL:
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/stdint.h?rev=65704&r1=65703&r2=65704&view=diff
==============================================================================
--- cfe/trunk/lib/Headers/stdint.h (original)
+++ cfe/trunk/lib/Headers/stdint.h Sat Feb 28 12:53:33 2009
@@ -122,7 +122,7 @@
#define UINT_FAST32_MAX UINT32_MAX
/* If we do not have 64-bit support, don't define the 64-bit size macros. */
-#ifndef __INT64_TYPE__
+#ifdef __INT64_TYPE__
#define INT64_MAX 9223372036854775807LL
#define INT64_MIN (-9223372036854775807LL-1)
#define UINT64_MAX 18446744073709551615ULL
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits