diff options
author | Chris Demetriou <cgd@sibyte.com> | 2000-05-18 17:45:30 +0000 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-05-18 10:45:30 -0700 |
commit | 91542396a697108f57f553951d6ff7c0c03c38d8 (patch) | |
tree | 522c95776bcb3f8087c88ce46c845e78b2a91bbc /gcc | |
parent | 3eb10f8a4f26bb96a7a4e02069665fc51bb1c949 (diff) | |
download | gcc-91542396a697108f57f553951d6ff7c0c03c38d8.zip gcc-91542396a697108f57f553951d6ff7c0c03c38d8.tar.gz gcc-91542396a697108f57f553951d6ff7c0c03c38d8.tar.bz2 |
com.h (FFECOM_f2cINTEGER, [...]): Note that these types correspond to built-in types now defined in the C front...
* com.h (FFECOM_f2cINTEGER, FFECOM_f2cLONGINT): Note that
these types correspond to built-in types now defined in
the C front end (for libf2c).
From-SVN: r33991
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/f/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/f/com.h | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index 9eb3cce..ef0cf90 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,3 +1,9 @@ +2000-05-18 Chris Demetriou <cgd@sibyte.com> + + * com.h (FFECOM_f2cINTEGER, FFECOM_f2cLONGINT): Note that + these types correspond to built-in types now defined in + the C front end (for libf2c). + Wed May 17 17:27:44 2000 Andrew Cagney <cagney@b1.cygnus.com> * top.c (ffe_decode_option): Update -Wall unused flags by calling diff --git a/gcc/f/com.h b/gcc/f/com.h index 2bb118b..8316040 100644 --- a/gcc/f/com.h +++ b/gcc/f/com.h @@ -127,6 +127,10 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2) #endif +/* The C front-end provides __g77_integer and __g77_uinteger types so that + the appropriately-sized signed and unsigned integer types are available + for libf2c. If you change this, also the definitions of those types + in ../c-decl.c. */ #define FFECOM_f2cINTEGER \ (LONG_TYPE_SIZE == FLOAT_TYPE_SIZE \ ? FFECOM_f2ccodeLONG \ @@ -136,6 +140,10 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #define FFECOM_f2cLOGICAL FFECOM_f2cINTEGER +/* The C front-end provides __g77_longint and __g77_ulongint types so that + the appropriately-sized signed and unsigned integer types are available + for libf2c. If you change this, also the definitions of those types + in ../c-decl.c. */ #define FFECOM_f2cLONGINT \ (LONG_TYPE_SIZE == (FLOAT_TYPE_SIZE * 2) \ ? FFECOM_f2ccodeLONG \ |