Lines Matching full:mips
216 // RUN: %clang_cc1 -E -ffreestanding -triple=mips-none-none %s | FileCheck -check-prefix MIPS %s
218 // MIPS:typedef signed long long int int64_t;
219 // MIPS:typedef unsigned long long int uint64_t;
220 // MIPS:typedef int64_t int_least64_t;
221 // MIPS:typedef uint64_t uint_least64_t;
222 // MIPS:typedef int64_t int_fast64_t;
223 // MIPS:typedef uint64_t uint_fast64_t;
225 // MIPS:typedef signed int int32_t;
226 // MIPS:typedef unsigned int uint32_t;
227 // MIPS:typedef int32_t int_least32_t;
228 // MIPS:typedef uint32_t uint_least32_t;
229 // MIPS:typedef int32_t int_fast32_t;
230 // MIPS:typedef uint32_t uint_fast32_t;
232 // MIPS:typedef signed short int16_t;
233 // MIPS:typedef unsigned short uint16_t;
234 // MIPS:typedef int16_t int_least16_t;
235 // MIPS:typedef uint16_t uint_least16_t;
236 // MIPS:typedef int16_t int_fast16_t;
237 // MIPS:typedef uint16_t uint_fast16_t;
239 // MIPS:typedef signed char int8_t;
240 // MIPS:typedef unsigned char uint8_t;
241 // MIPS:typedef int8_t int_least8_t;
242 // MIPS:typedef uint8_t uint_least8_t;
243 // MIPS:typedef int8_t int_fast8_t;
244 // MIPS:typedef uint8_t uint_fast8_t;
246 // MIPS:typedef int32_t intptr_t;
247 // MIPS:typedef uint32_t uintptr_t;
249 // MIPS:typedef long long int intmax_t;
250 // MIPS:typedef long long unsigned int uintmax_t;
252 // MIPS:INT8_MAX_ 127
253 // MIPS:INT8_MIN_ (-127 -1)
254 // MIPS:UINT8_MAX_ 255
255 // MIPS:INT_LEAST8_MIN_ (-127 -1)
256 // MIPS:INT_LEAST8_MAX_ 127
257 // MIPS:UINT_LEAST8_MAX_ 255
258 // MIPS:INT_FAST8_MIN_ (-127 -1)
259 // MIPS:INT_FAST8_MAX_ 127
260 // MIPS:UINT_FAST8_MAX_ 255
262 // MIPS:INT16_MAX_ 32767
263 // MIPS:INT16_MIN_ (-32767 -1)
264 // MIPS:UINT16_MAX_ 65535
265 // MIPS:INT_LEAST16_MIN_ (-32767 -1)
266 // MIPS:INT_LEAST16_MAX_ 32767
267 // MIPS:UINT_LEAST16_MAX_ 65535
268 // MIPS:INT_FAST16_MIN_ (-32767 -1)
269 // MIPS:INT_FAST16_MAX_ 32767
270 // MIPS:UINT_FAST16_MAX_ 65535
272 // MIPS:INT32_MAX_ 2147483647
273 // MIPS:INT32_MIN_ (-2147483647 -1)
274 // MIPS:UINT32_MAX_ 4294967295U
275 // MIPS:INT_LEAST32_MIN_ (-2147483647 -1)
276 // MIPS:INT_LEAST32_MAX_ 2147483647
277 // MIPS:UINT_LEAST32_MAX_ 4294967295U
278 // MIPS:INT_FAST32_MIN_ (-2147483647 -1)
279 // MIPS:INT_FAST32_MAX_ 2147483647
280 // MIPS:UINT_FAST32_MAX_ 4294967295U
282 // MIPS:INT64_MAX_ 9223372036854775807LL
283 // MIPS:INT64_MIN_ (-9223372036854775807LL -1)
284 // MIPS:UINT64_MAX_ 18446744073709551615ULL
285 // MIPS:INT_LEAST64_MIN_ (-9223372036854775807LL -1)
286 // MIPS:INT_LEAST64_MAX_ 9223372036854775807LL
287 // MIPS:UINT_LEAST64_MAX_ 18446744073709551615ULL
288 // MIPS:INT_FAST64_MIN_ (-9223372036854775807LL -1)
289 // MIPS:INT_FAST64_MAX_ 9223372036854775807LL
290 // MIPS:UINT_FAST64_MAX_ 18446744073709551615ULL
292 // MIPS:INTPTR_MIN_ (-2147483647 -1)
293 // MIPS:INTPTR_MAX_ 2147483647
294 // MIPS:UINTPTR_MAX_ 4294967295U
295 // MIPS:PTRDIFF_MIN_ (-2147483647 -1)
296 // MIPS:PTRDIFF_MAX_ 2147483647
297 // MIPS:SIZE_MAX_ 4294967295U
299 // MIPS:INTMAX_MIN_ (-9223372036854775807LL -1)
300 // MIPS:INTMAX_MAX_ 9223372036854775807LL
301 // MIPS:UINTMAX_MAX_ 18446744073709551615ULL
303 // MIPS:SIG_ATOMIC_MIN_ (-2147483647 -1)
304 // MIPS:SIG_ATOMIC_MAX_ 2147483647
305 // MIPS:WINT_MIN_ (-2147483647 -1)
306 // MIPS:WINT_MAX_ 2147483647
308 // MIPS:WCHAR_MAX_ 2147483647
309 // MIPS:WCHAR_MIN_ (-2147483647 -1)
311 // MIPS:INT8_C_(0) 0
312 // MIPS:UINT8_C_(0) 0U
313 // MIPS:INT16_C_(0) 0
314 // MIPS:UINT16_C_(0) 0U
315 // MIPS:INT32_C_(0) 0
316 // MIPS:UINT32_C_(0) 0U
317 // MIPS:INT64_C_(0) 0LL
318 // MIPS:UINT64_C_(0) 0ULL
320 // MIPS:INTMAX_C_(0) 0LL
321 // MIPS:UINTMAX_C_(0) 0ULL