diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-18 17:45:30 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-18 17:45:30 +0000 |
commit | db3d6af1231adc9e4e50db3f58248c0bfff0eace (patch) | |
tree | 522c95776bcb3f8087c88ce46c845e78b2a91bbc /gcc/f/com.h | |
parent | 0854f909506e21dd58dac0e7091eec09b941c982 (diff) | |
download | gcc-db3d6af1231adc9e4e50db3f58248c0bfff0eace.tar.gz |
* com.h (FFECOM_f2cINTEGER, FFECOM_f2cLONGINT): Note that
these types correspond to built-in types now defined in
the C front end (for libf2c).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33991 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/com.h')
-rw-r--r-- | gcc/f/com.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/f/com.h b/gcc/f/com.h index 2bb118b1492..83160404c64 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 \ |