diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-20 06:36:36 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-20 06:36:36 +0000 |
commit | 3de1ababe09df4bd8b26e663bdef6e4c54b9c14e (patch) | |
tree | 5df0f14f58dbab177f244889f99818f0cfcea693 /gcc/real.h | |
parent | 8fd007d79a04ea4bbd244c755a366b33198fd8cd (diff) | |
download | gcc-3de1ababe09df4bd8b26e663bdef6e4c54b9c14e.tar.gz |
* real.h (UNKNOWN_FLOAT_FORMAT, IEEE_FLOAT_FORMAT, VAX_FLOAT_FORMAT,
IBM_FLOAT_FORMAT, C4X_FLOAT_FORMAT, TARGET_FLOAT_FORMAT): Move ...
* defaults.h: ... here.
* config/arm/arm.h, config/avr/avr.h, config/d30v/d30v.h,
config/fr30/fr30.h, config/frv/frv.h, config/ia64/ia64.h,
config/ip2k/ip2k.h, config/mips/mips.h, config/stormy16/stormy16.h,
config/xtensa/xtensa.h (TARGET_FLOAT_FORMAT): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57336 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.h')
-rw-r--r-- | gcc/real.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/real.h b/gcc/real.h index 24df216ec53..7ac10ffdd9a 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -151,19 +151,6 @@ extern void real_2expN PARAMS ((REAL_VALUE_TYPE *, int)); /* ====================================================================== */ /* Crap. */ -/* Define codes for all the float formats that we know of. */ -#define UNKNOWN_FLOAT_FORMAT 0 -#define IEEE_FLOAT_FORMAT 1 -#define VAX_FLOAT_FORMAT 2 -#define IBM_FLOAT_FORMAT 3 -#define C4X_FLOAT_FORMAT 4 - -/* Default to IEEE float if not specified. Nearly all machines use it. */ - -#ifndef TARGET_FLOAT_FORMAT -#define TARGET_FLOAT_FORMAT IEEE_FLOAT_FORMAT -#endif - #define REAL_ARITHMETIC(value, code, d1, d2) \ real_arithmetic (&(value), code, &(d1), &(d2)) |