]> granicus.if.org Git - clang/commitdiff
fix inverted conditional, rdar://6633188
authorChris Lattner <sabre@nondot.org>
Sat, 28 Feb 2009 18:53:33 +0000 (18:53 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 28 Feb 2009 18:53:33 +0000 (18:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65704 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Headers/stdint.h

index d51966713d411afe58503355826462ca179c440d..12546d8921c3f6cfa1052b6321a774e95de0167b 100644 (file)
@@ -122,7 +122,7 @@ typedef __UINTMAX_TYPE__ uintmax_t;
 #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