comparison gcc/config/hpux-stdint.h @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents
children
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
1
2 /* These should be correct for ia64-hp-hpux11.23. */
3
4 #define SIG_ATOMIC_TYPE "unsigned int"
5
6 #define INT8_TYPE "signed char"
7 #define INT16_TYPE "short int"
8 #define INT32_TYPE "int"
9 #define INT64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
10 #define UINT8_TYPE "unsigned char"
11 #define UINT16_TYPE "short unsigned int"
12 #define UINT32_TYPE "unsigned int"
13 #define UINT64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
14
15 #define INT_LEAST8_TYPE "signed char"
16 #define INT_LEAST16_TYPE "short int"
17 #define INT_LEAST32_TYPE "int"
18 #define INT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
19 #define UINT_LEAST8_TYPE "unsigned char"
20 #define UINT_LEAST16_TYPE "short unsigned int"
21 #define UINT_LEAST32_TYPE "unsigned int"
22 #define UINT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
23
24 #define INT_FAST8_TYPE "int"
25 #define INT_FAST16_TYPE "int"
26 #define INT_FAST32_TYPE "int"
27 #define INT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
28 #define UINT_FAST8_TYPE "unsigned int"
29 #define UINT_FAST16_TYPE "unsigned int"
30 #define UINT_FAST32_TYPE "unsigned int"
31 #define UINT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
32
33 #define INTPTR_TYPE "long int"
34 #define UINTPTR_TYPE "long unsigned int"