OSDN Git Service

(struct function): Make frame_offset be HOST_WIDE_INT.
[pf3gnuchains/gcc-fork.git] / gcc / bytetypes.h
1 /* These should come from genemit */
2
3 /* Use __signed__ in case compiling with -traditional.  */
4
5 typedef __signed__ char QItype;
6 typedef unsigned char QUtype;
7 typedef __signed__ short int HItype;
8 typedef unsigned short int HUtype;
9 typedef __signed__ long int SItype;
10 typedef unsigned long int SUtype;
11 typedef __signed__ long long int DItype;
12 typedef unsigned long long int DUtype;
13 typedef float SFtype;
14 typedef double DFtype;
15 typedef long double XFtype;
16 typedef char *Ptype;
17 typedef int Ttype;
18
19
20 typedef union stacktype
21 {
22   QItype QIval;
23   QUtype QUval;
24   HItype HIval;
25   HUtype HUval;
26   SItype SIval;
27   SUtype SUval;
28   DItype DIval;
29   DUtype DUval;
30   SFtype SFval;
31   DFtype DFval;
32   XFtype XFval;
33   Ptype Pval;
34   Ttype Tval;
35 } stacktype;