Commit f4e25503 by Richard Stallman

(xsigned): New macro.

(QItype, HItype, SItype, DItype): Use that.

From-SVN: r5412
parent 6317749b
...@@ -18,13 +18,18 @@ along with GNU CC; see the file COPYING. If not, write to ...@@ -18,13 +18,18 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* These should come from genemit */ /* These should come from genemit */
typedef signed char QItype; #ifdef __STDC__
#define xsigned
#else
#define xsigned signed
#endif
typedef xsigned char QItype;
typedef unsigned char QUtype; typedef unsigned char QUtype;
typedef signed short int HItype; typedef xsigned short int HItype;
typedef unsigned short int HUtype; typedef unsigned short int HUtype;
typedef signed long int SItype; typedef xsigned long int SItype;
typedef unsigned long int SUtype; typedef unsigned long int SUtype;
typedef signed long long int DItype; typedef xsigned long long int DItype;
typedef unsigned long long int DUtype; typedef unsigned long long int DUtype;
typedef float SFtype; typedef float SFtype;
typedef double DFtype; typedef double DFtype;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment