source: trunk/third/gcc/bytetypes.h @ 8834

Revision 8834, 740 bytes checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8833, which included commits to RCS files with non-trunk default branches.
Line 
1/* These should come from genemit */
2
3/* Use __signed__ in case compiling with -traditional.  */
4
5typedef __signed__ char QItype;
6typedef unsigned char QUtype;
7typedef __signed__ short int HItype;
8typedef unsigned short int HUtype;
9typedef __signed__ long int SItype;
10typedef unsigned long int SUtype;
11typedef __signed__ long long int DItype;
12typedef unsigned long long int DUtype;
13typedef float SFtype;
14typedef double DFtype;
15typedef long double XFtype;
16typedef char *Ptype;
17typedef int Ttype;
18
19
20typedef 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;
Note: See TracBrowser for help on using the repository browser.