diff options
author | John Gilmore <gnu@cygnus> | 1991-08-19 20:54:03 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-08-19 20:54:03 +0000 |
commit | 361bf6eee5a8ca92d4a1b1693fd1bff0fe286799 (patch) | |
tree | 11084d8484dc938f98a585d4351df7212c06f288 /gdb/tm-pyr.h | |
parent | 6724ff46c812880323b37d7bcf039866b02c882b (diff) | |
download | gdb-361bf6eee5a8ca92d4a1b1693fd1bff0fe286799.zip gdb-361bf6eee5a8ca92d4a1b1693fd1bff0fe286799.tar.gz gdb-361bf6eee5a8ca92d4a1b1693fd1bff0fe286799.tar.bz2 |
Minor bug fixes from BSD Net2 gdb:
* blockframe.c (get_prev_frame_info): If FRAME_CHAIN_COMBINE
returns 0, there is no previous frame.
* breakpoint.c (commands_command): If !from_tty, don't call
input_from_terminal_p().
* dbxread.c (record_misc_function): Speed up slightly.
(compare_psymbols): Ditto.
* infcmd.c (do_registers_info): Take a second argument to
determine whether to print float registers. "info registers"
does not do so anymore. "info all-registers" does, now.
* mips-tdep.c, pyr-tdep.c (xxx_do_registers_info): Take second
arg and ignore it.
* tm-mips.h, tm-pyr.h (DO_REGISTERS_INFO): Pass second arg.
* inflow.c (initialize_inflow): Set tflags_ours correctly.
Diffstat (limited to 'gdb/tm-pyr.h')
-rw-r--r-- | gdb/tm-pyr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tm-pyr.h b/gdb/tm-pyr.h index 963fdf2..5329853 100644 --- a/gdb/tm-pyr.h +++ b/gdb/tm-pyr.h @@ -181,7 +181,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Define DO_REGISTERS_INFO() to do machine-specific formatting of register dumps. */ -#define DO_REGISTERS_INFO(_regnum) pyr_do_registers_info(_regnum) +#define DO_REGISTERS_INFO(_regnum, fp) pyr_do_registers_info(_regnum, fp) /* need this so we can find the global registers: they never get saved. */ extern unsigned int global_reg_offset; |