diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-07 17:06:25 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-07 17:06:25 +0000 |
commit | 1197924d2b6814fdf2f3d6b90432824ccef43855 (patch) | |
tree | f54429b22bfb05d0bed71370eb461b2075989eaf /gcc/doc/tm.texi | |
parent | 883899eef1b7e2a8ed46ef954569459809c8a60f (diff) | |
download | gcc-1197924d2b6814fdf2f3d6b90432824ccef43855.zip gcc-1197924d2b6814fdf2f3d6b90432824ccef43855.tar.gz gcc-1197924d2b6814fdf2f3d6b90432824ccef43855.tar.bz2 |
config.gcc: Don't mention MAX_LONG_TYPE_SIZE.
* config.gcc: Don't mention MAX_LONG_TYPE_SIZE.
* system.h (MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE,
MAX_WCHAR_TYPE_SIZE, GCOV_TYPE_SIZE): Poison.
* config/avr/avr.h, config/h8300/h8300.h, config/i386/i386.h,
config/ia64/ia64.h, config/ip2k/ip2k.h,
config/iq2000/iq2000.h, config/mips/iris5.h,
config/mips/mips.h, config/pa/pa-64.h, config/pa/pa.h,
config/rs6000/aix51.h, config/rs6000/aix52.h,
config/rs6000/darwin.h, config/rs6000/rs6000.h,
config/s390/s390.h, config/sh/sh.h, config/sparc/freebsd.h,
config/sparc/linux.h, config/sparc/linux64.h,
config/sparc/netbsd-elf.h, config/sparc/sparc.h,
config/xtensa/xtensa.h: Remove the definitions of
MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE, and/or
MAX_WCHAR_TYPE_SIZE.
* doc/tm.texi (MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE,
MAX_WCHAR_TYPE_SIZE, GCOV_TYPE_SIZE): Remove.
From-SVN: r77460
Diffstat (limited to 'gcc/doc/tm.texi')
-rw-r--r-- | gcc/doc/tm.texi | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 37a3e20..883f034 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -1535,14 +1535,6 @@ the size of that type. If you don't define this, the default is the value of @code{LONG_TYPE_SIZE}. @end defmac -@defmac MAX_LONG_TYPE_SIZE -Maximum number for the size in bits of the type @code{long} on the -target machine. If this is undefined, the default is -@code{LONG_TYPE_SIZE}. Otherwise, it is the constant value that is the -largest value that @code{LONG_TYPE_SIZE} can have at run-time. This is -used in @code{cpp}. -@end defmac - @defmac LONG_LONG_TYPE_SIZE A C expression for the size in bits of the type @code{long long} on the target machine. If you don't define this, the default is two @@ -1579,14 +1571,6 @@ the target machine. If you don't define this, the default is two words. @end defmac -@defmac MAX_LONG_DOUBLE_TYPE_SIZE -Maximum number for the size in bits of the type @code{long double} on the -target machine. If this is undefined, the default is -@code{LONG_DOUBLE_TYPE_SIZE}. Otherwise, it is the constant value that is -the largest value that @code{LONG_DOUBLE_TYPE_SIZE} can have at run-time. -This is used in @code{cpp}. -@end defmac - @defmac TARGET_FLT_EVAL_METHOD A C expression for the value for @code{FLT_EVAL_METHOD} in @file{float.h}, assuming, if applicable, that the floating-point control word is in its @@ -1659,22 +1643,6 @@ characters. This is used in @code{cpp}, which cannot make use of @code{WCHAR_TYPE}. @end defmac -@defmac MAX_WCHAR_TYPE_SIZE -Maximum number for the size in bits of the data type for wide -characters. If this is undefined, the default is -@code{WCHAR_TYPE_SIZE}. Otherwise, it is the constant value that is the -largest value that @code{WCHAR_TYPE_SIZE} can have at run-time. This is -used in @code{cpp}. -@end defmac - -@defmac GCOV_TYPE_SIZE -A C expression for the size in bits of the type used for gcov counters on the -target machine. If you don't define this, the default is one -@code{LONG_TYPE_SIZE} in case it is greater or equal to 64-bit and -@code{LONG_LONG_TYPE_SIZE} otherwise. You may want to re-define the type to -ensure atomicity for counters in multithreaded programs. -@end defmac - @defmac WINT_TYPE A C expression for a string describing the name of the data type to use for wide characters passed to @code{printf} and returned from |