diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-06-11 02:30:59 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-06-11 02:30:59 +0000 |
commit | d855c300c716ddddc5e278bfa644c8939b52e19b (patch) | |
tree | a99798bbdd7b37ee5d9b096c6cb3cc50c276ef46 /gdb/infcmd.c | |
parent | dd12a1014c2c9e65779576b12f0d98621f57f0fb (diff) | |
download | gdb-d855c300c716ddddc5e278bfa644c8939b52e19b.zip gdb-d855c300c716ddddc5e278bfa644c8939b52e19b.tar.gz gdb-d855c300c716ddddc5e278bfa644c8939b52e19b.tar.bz2 |
Make print_float_info() multi-arch pure. Add ui_file and frame parameters.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 400ac55..6d3f792 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1847,7 +1847,7 @@ interrupt_target_command (char *args, int from_tty) static void float_info (char *addr_exp, int from_tty) { - PRINT_FLOAT_INFO (); + gdbarch_print_float_info (current_gdbarch, gdb_stdout, selected_frame); } /* ARGSUSED */ |