diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-08-15 23:41:20 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-08-15 23:41:20 +0000 |
commit | 23e3a7ac79ad6f6648bd99602ba715874ce9ac9a (patch) | |
tree | aeb8f594b82b8208465506f08189bc44ca618e88 /gdb/arm-tdep.c | |
parent | 8de397a5ad45db45f00ce9b58c2b8b2d7b5aa765 (diff) | |
download | gdb-23e3a7ac79ad6f6648bd99602ba715874ce9ac9a.zip gdb-23e3a7ac79ad6f6648bd99602ba715874ce9ac9a.tar.gz gdb-23e3a7ac79ad6f6648bd99602ba715874ce9ac9a.tar.bz2 |
2002-08-15 Andrew Cagney <ac131313@redhat.com>
* gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
Add `args' parameter.
* gdbarch.h, gdbarch.c: Regenerate.
* arm-tdep.c (arm_print_float_info): Add the parameter `args'.
* infcmd.c (float_info): Call print_float_info.
(print_float_info): New function. By default, print the
floating-point registers.
* arch-utils.h (default_print_float_info): Delete declaration.
* arch-utils.c (default_print_float_info): Delete function.
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index ba213ae..037598d 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -1585,7 +1585,7 @@ print_fpu_flags (int flags) (if present) or emulator. */ static void arm_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, - struct frame_info *frame) + struct frame_info *frame, const char *args) { register unsigned long status = read_register (ARM_FPS_REGNUM); int type; |