mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
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:
parent
d2fda8a54a
commit
39ac2cbcd8
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user