Introduce INT64_C macro and unbreak LLVM on MSVC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58039 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Argyrios Kyrtzidis 2008-10-23 17:20:39 +00:00
parent d2fda8a54a
commit 39ac2cbcd8

View File

@ -105,6 +105,9 @@ typedef signed int ssize_t;
#define INT32_MAX 2147483647
#define INT32_MIN -2147483648
#define UINT32_MAX 4294967295U
#if !defined(INT64_C)
# define INT64_C(val) val##LL
#endif
#endif /* _MSC_VER */
/* Set defaults for constants which we cannot find. */