diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-12 15:48:39 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-12 15:48:39 -0400 |
commit | b2bf5aef7a0c975780ae8936b25594c47f8065ed (patch) | |
tree | cdf991e860d6913d323f7a1f34db0369c21453db | |
parent | 389da3624578ca159cfb6827ad149f5e0404d13a (diff) | |
download | gcc-b2bf5aef7a0c975780ae8936b25594c47f8065ed.zip gcc-b2bf5aef7a0c975780ae8936b25594c47f8065ed.tar.gz gcc-b2bf5aef7a0c975780ae8936b25594c47f8065ed.tar.bz2 |
Revert to identifiers for mode attributes.
From-SVN: r7282
-rw-r--r-- | gcc/libgcc2.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index a37e66f..2a67b0f 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -49,28 +49,28 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ because the sizes for those types can be configured to be anything. Instead we use the following special type names. */ -typedef unsigned int UQItype __attribute__ ((mode ("QI"))); -typedef int SItype __attribute__ ((mode ("SI"))); -typedef unsigned int USItype __attribute__ ((mode ("SI"))); -typedef int DItype __attribute__ ((mode ("DI"))); -typedef unsigned int UDItype __attribute__ ((mode ("DI"))); -typedef float SFtype __attribute__ ((mode ("SF"))); -typedef float DFtype __attribute__ ((mode ("DF"))); +typedef unsigned int UQItype __attribute__ ((mode (QI))); +typedef int SItype __attribute__ ((mode (SI))); +typedef unsigned int USItype __attribute__ ((mode (SI))); +typedef int DItype __attribute__ ((mode (DI))); +typedef unsigned int UDItype __attribute__ ((mode (DI))); +typedef float SFtype __attribute__ ((mode (SF))); +typedef float DFtype __attribute__ ((mode (DF))); #if LONG_DOUBLE_TYPE_SIZE == 96 -typedef float XFtype __attribute__ ((mode ("XF"))); +typedef float XFtype __attribute__ ((mode (XF))); #endif #if LONG_DOUBLE_TYPE_SIZE == 128 -typedef float TFtype __attribute__ ((mode ("TF"))); +typedef float TFtype __attribute__ ((mode (TF))); #endif #if BITS_PER_WORD==16 -typedef int word_type __attribute__ ((mode ("HI"))); +typedef int word_type __attribute__ ((mode (HI))); #endif #if BITS_PER_WORD==32 -typedef int word_type __attribute__ ((mode ("SI"))); +typedef int word_type __attribute__ ((mode (SI))); #endif #if BITS_PER_WORD==64 -typedef int word_type __attribute__ ((mode ("DI"))); +typedef int word_type __attribute__ ((mode (DI))); #endif /* Make sure that we don't accidentally use any normal C language built-in |