From: Chris Lattner Date: Sat, 28 Feb 2009 18:53:33 +0000 (+0000) Subject: fix inverted conditional, rdar://6633188 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab775f62eab83f06ed972e573599031719ae2a9f;p=clang fix inverted conditional, rdar://6633188 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65704 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/stdint.h b/lib/Headers/stdint.h index d51966713d..12546d8921 100644 --- a/lib/Headers/stdint.h +++ b/lib/Headers/stdint.h @@ -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