From: Richard Stallman Date: Wed, 22 Sep 1993 19:57:36 +0000 (+0000) Subject: (xsigned): New macro. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f4e25503265fa2d8a816ca48de1e4d90cdf1fece;p=platform%2Fupstream%2Fgcc.git (xsigned): New macro. (QItype, HItype, SItype, DItype): Use that. From-SVN: r5412 --- diff --git a/gcc/bytecode.h b/gcc/bytecode.h index 6e97312..dab116e 100644 --- a/gcc/bytecode.h +++ b/gcc/bytecode.h @@ -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. */ /* 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 signed short int HItype; +typedef xsigned short int HItype; typedef unsigned short int HUtype; -typedef signed long int SItype; +typedef xsigned long int SItype; typedef unsigned long int SUtype; -typedef signed long long int DItype; +typedef xsigned long long int DItype; typedef unsigned long long int DUtype; typedef float SFtype; typedef double DFtype;