summaryrefslogtreecommitdiff
path: root/gdb/infcmd.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-02-01 17:28:41 +0000
committerAndrew Cagney <cagney@redhat.com>2003-02-01 17:28:41 +0000
commitc8c29cdf1c66165b459efafc254ee9ce13ddb0bb (patch)
tree98142bd90128447ad49061ea68c33586f681d953 /gdb/infcmd.c
parentb0574b8021a30cd6fd8c150d59f2ee99d82ee09a (diff)
downloadgdb-c8c29cdf1c66165b459efafc254ee9ce13ddb0bb.tar.gz
2003-02-01 Andrew Cagney <ac131313@redhat.com>
* infcmd.c (print_float_info): Delete code conditional on FLOAT_INFO. * config/nm-lynx.h: Delete #undef FLOAT_INFO. Update copyright. * config/m68k/nm-apollo68b.h: Ditto. * config/i386/tm-ptx.h (FLOAT_INFO): Delete. Update copyright. * config/ns32k/nm-nbsd.h (FLOAT_INFO): Ditto. * config/i386/tm-symmetry.h (FLOAT_INFO): Ditto. Index: doc/ChangeLog 2003-02-01 Andrew Cagney <ac131313@redhat.com> * gdbint.texinfo (Target Architecture Definition): Delete FLOAT_INFO.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r--gdb/infcmd.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index 8e9db39ed20..7a96900a24e 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -2008,12 +2008,6 @@ print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
gdbarch_print_float_info (gdbarch, file, frame, args);
else
{
-#ifdef FLOAT_INFO
-#if GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL
-#error "FLOAT_INFO defined in multi-arch"
-#endif
- FLOAT_INFO;
-#else
int regnum;
int printed_something = 0;
@@ -2028,7 +2022,6 @@ print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
if (!printed_something)
fprintf_filtered (file, "\
No floating-point info available for this processor.\n");
-#endif
}
}