Deleted Added
full compact
DataTypes.h.in (226633) DataTypes.h.in (234353)
1/*===-- include/Support/DataTypes.h - Define fixed size types -----*- C -*-===*\
2|* *|
3|* The LLVM Compiler Infrastructure *|
4|* *|
5|* This file is distributed under the University of Illinois Open Source *|
6|* License. See LICENSE.TXT for details. *|
7|* *|
8|*===----------------------------------------------------------------------===*|

--- 153 unchanged lines hidden (view full) ---

162#endif
163#ifndef INT64_C
164# define INT64_C(C) C##i64
165#endif
166#ifndef UINT64_C
167# define UINT64_C(C) C##ui64
168#endif
169
1/*===-- include/Support/DataTypes.h - Define fixed size types -----*- C -*-===*\
2|* *|
3|* The LLVM Compiler Infrastructure *|
4|* *|
5|* This file is distributed under the University of Illinois Open Source *|
6|* License. See LICENSE.TXT for details. *|
7|* *|
8|*===----------------------------------------------------------------------===*|

--- 153 unchanged lines hidden (view full) ---

162#endif
163#ifndef INT64_C
164# define INT64_C(C) C##i64
165#endif
166#ifndef UINT64_C
167# define UINT64_C(C) C##ui64
168#endif
169
170#ifndef PRId64
171# define PRId64 "I64d"
172#endif
173#ifndef PRIi64
174# define PRIi64 "I64i"
175#endif
176#ifndef PRIo64
177# define PRIo64 "I64o"
178#endif
179#ifndef PRIu64
180# define PRIu64 "I64u"
181#endif
170#ifndef PRIx64
171# define PRIx64 "I64x"
172#endif
182#ifndef PRIx64
183# define PRIx64 "I64x"
184#endif
185#ifndef PRIX64
186# define PRIX64 "I64X"
187#endif
173
174#endif /* _MSC_VER */
175
176/* Set defaults for constants which we cannot find. */
177#if !defined(INT64_MAX)
178# define INT64_MAX 9223372036854775807LL
179#endif
180#if !defined(INT64_MIN)

--- 17 unchanged lines hidden ---
188
189#endif /* _MSC_VER */
190
191/* Set defaults for constants which we cannot find. */
192#if !defined(INT64_MAX)
193# define INT64_MAX 9223372036854775807LL
194#endif
195#if !defined(INT64_MIN)

--- 17 unchanged lines hidden ---