Fix an #ifndef that should be an #ifdef instead.

llvm-svn: 64206
This commit is contained in:
Anders Carlsson 2009-02-10 06:18:19 +00:00
parent 33c1b6528f
commit 7325b61e74
1 changed files with 2 additions and 2 deletions

View File

@ -216,8 +216,8 @@ typedef __UINTMAX_TYPE__ uintmax_t;
#define INT32_C(v) (v)
#define UINT32_C(v) (v##U)
/* If we do not have 64-bit support, don't define the 64-bit size macros. */
#ifndef __INT64_TYPE__
/* Only define the 64-bit size macros if we have 64-bit support. */
#ifdef __INT64_TYPE__
#define INT64_C(v) (v##LL)
#define UINT64_C(v) (v##ULL)
#endif