diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-06-02 01:59:13 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-06-02 01:59:13 +0000 |
commit | f0d4cc9e0ec5ad1533782d32bbf5029b2601828f (patch) | |
tree | 694515271aab5920d4cf655104b857ff03479e1a /gdb/defs.h | |
parent | 1b3739704ea05cca80c0401d4b33ad3dc625e6f4 (diff) | |
download | gdb-f0d4cc9e0ec5ad1533782d32bbf5029b2601828f.zip gdb-f0d4cc9e0ec5ad1533782d32bbf5029b2601828f.tar.gz gdb-f0d4cc9e0ec5ad1533782d32bbf5029b2601828f.tar.bz2 |
Multiarch TARGET_FLOAT_FORMAT, TARGET_DOUBLE_FORMAT,
TARGET_LONG_DOUBLE_FORMAT. Update d10v.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -1114,21 +1114,6 @@ extern const struct floatformat floatformat_unknown; #define HOST_LONG_DOUBLE_FORMAT &floatformat_unknown #endif -#ifndef TARGET_FLOAT_FORMAT -#define TARGET_FLOAT_FORMAT (TARGET_BYTE_ORDER == BIG_ENDIAN \ - ? &floatformat_ieee_single_big \ - : &floatformat_ieee_single_little) -#endif -#ifndef TARGET_DOUBLE_FORMAT -#define TARGET_DOUBLE_FORMAT (TARGET_BYTE_ORDER == BIG_ENDIAN \ - ? &floatformat_ieee_double_big \ - : &floatformat_ieee_double_little) -#endif - -#ifndef TARGET_LONG_DOUBLE_FORMAT -#define TARGET_LONG_DOUBLE_FORMAT &floatformat_unknown -#endif - /* Use `long double' if the host compiler supports it. (Note that this is not necessarily any longer than `double'. On SunOS/gcc, it's the same as double.) This is necessary because GDB internally converts all floating |