aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-28 18:53:33 +0000
committerChris Lattner <sabre@nondot.org>2009-02-28 18:53:33 +0000
commitab775f62eab83f06ed972e573599031719ae2a9f (patch)
tree6766334da31a212f6f17885985e7813ed29db276 /lib
parent3aa1861bd8b5121e53379b1a00f9d6ad8dead4f6 (diff)
fix inverted conditional, rdar://6633188
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65704 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Headers/stdint.h2
1 files changed, 1 insertions, 1 deletions
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