(expand_value_return): Make function static.
[official-gcc.git] / gcc / bytetypes.h
blobf91566900c66335cc399afec004e86c8b1d78013
1 /* These should come from genemit */
3 /* Use __signed__ in case compiling with -traditional. */
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;
20 typedef union stacktype
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;