diff options
author | Yao Qi <yao@codesourcery.com> | 2014-12-18 20:47:27 +0800 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2014-12-18 20:47:27 +0800 |
commit | 2ad47ec43319b87774a276506f48e8e4496bb310 (patch) | |
tree | f1e2166d80eb0476d1b56677451d8f6e5b61ddb2 /gdb/h8300-tdep.c | |
parent | 253342b8e6fbd24249fb84eebc706d923f08406f (diff) | |
download | gdb-2ad47ec43319b87774a276506f48e8e4496bb310.zip gdb-2ad47ec43319b87774a276506f48e8e4496bb310.tar.gz gdb-2ad47ec43319b87774a276506f48e8e4496bb310.tar.bz2 |
Remove h8300_print_float_info
In infcmd.c:print_float_info, if the architecture doesn't have gdbarch
method print_float_info implemented and doesn't float reggroup, GDB
will prints "No floating-point info available for this processor."
The h8300 port doesn't have float registers, and don't need to
implement print_float_info. This patch is to remove it.
gdb:
2014-12-18 Yao Qi <yao@codesourcery.com>
* h8300-tdep.c (h8300_print_float_info): Remove.
(h8300_gdbarch_init): Remove the call to
set_gdbarch_print_float_info.
Diffstat (limited to 'gdb/h8300-tdep.c')
-rw-r--r-- | gdb/h8300-tdep.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gdb/h8300-tdep.c b/gdb/h8300-tdep.c index 0f58553..cd2b344 100644 --- a/gdb/h8300-tdep.c +++ b/gdb/h8300-tdep.c @@ -1256,14 +1256,6 @@ h8300_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, return breakpoint; } -static void -h8300_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, - struct frame_info *frame, const char *args) -{ - fprintf_filtered (file, "\ -No floating-point info available for this processor.\n"); -} - static struct gdbarch * h8300_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) { @@ -1375,7 +1367,6 @@ h8300_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) set_gdbarch_pc_regnum (gdbarch, E_PC_REGNUM); set_gdbarch_register_type (gdbarch, h8300_register_type); set_gdbarch_print_registers_info (gdbarch, h8300_print_registers_info); - set_gdbarch_print_float_info (gdbarch, h8300_print_float_info); /* * Frame Info |