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/arm-tdep.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/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 04fca2e..1ce0a5b 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -1558,7 +1558,8 @@ print_fpu_flags (int flags) /* Print interesting information about the floating point processor (if present) or emulator. */ static void -arm_print_float_info (void) +arm_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, + struct frame_info *frame) { register unsigned long status = read_register (ARM_FPS_REGNUM); int type; |