mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 12:03:41 +08:00
2004-02-29 Andrew Cagney <cagney@redhat.com>
* rs6000-tdep.c (rs6000_init_frame_pc_first): New function. (rs6000_gdbarch_init): Set deprecated_init_frame_pc_first. * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Delete macro.
This commit is contained in:
parent
312d3cb118
commit
3ce2bf1815
@ -1,3 +1,10 @@
|
||||
2004-02-29 Andrew Cagney <cagney@redhat.com>
|
||||
|
||||
* rs6000-tdep.c (rs6000_init_frame_pc_first): New function.
|
||||
(rs6000_gdbarch_init): Set deprecated_init_frame_pc_first.
|
||||
* config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST):
|
||||
Delete macro.
|
||||
|
||||
2004-02-29 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* inflow.c (terminal_inferior): Don't give up the terminal if we
|
||||
|
@ -74,12 +74,6 @@ extern void aix_process_linenos (void);
|
||||
#define FP0_REGNUM 32 /* Floating point register 0 */
|
||||
#define FPLAST_REGNUM 63 /* Last floating point register */
|
||||
|
||||
/* Define other aspects of the stack frame. */
|
||||
|
||||
#define DEPRECATED_INIT_FRAME_PC_FIRST(fromleaf, prev) \
|
||||
(fromleaf ? DEPRECATED_SAVED_PC_AFTER_CALL (prev->next) : \
|
||||
prev->next ? DEPRECATED_FRAME_SAVED_PC (prev->next) : read_pc ())
|
||||
|
||||
/* Notice when a new child process is started. */
|
||||
|
||||
#define TARGET_CREATE_INFERIOR_HOOK rs6000_create_inferior
|
||||
|
@ -210,6 +210,13 @@ rs6000_frame_init_saved_regs (struct frame_info *fi)
|
||||
frame_get_saved_regs (fi, NULL);
|
||||
}
|
||||
|
||||
static CORE_ADDR
|
||||
rs6000_init_frame_pc_first (int fromleaf, struct frame_info *prev)
|
||||
{
|
||||
return (fromleaf ? DEPRECATED_SAVED_PC_AFTER_CALL (prev->next)
|
||||
: prev->next ? DEPRECATED_FRAME_SAVED_PC (prev->next) : read_pc ());
|
||||
}
|
||||
|
||||
static CORE_ADDR
|
||||
rs6000_frame_args_address (struct frame_info *fi)
|
||||
{
|
||||
@ -2914,6 +2921,7 @@ rs6000_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
|
||||
set_gdbarch_deprecated_frame_init_saved_regs (gdbarch, rs6000_frame_init_saved_regs);
|
||||
set_gdbarch_deprecated_init_extra_frame_info (gdbarch, rs6000_init_extra_frame_info);
|
||||
set_gdbarch_deprecated_init_frame_pc_first (gdbarch, rs6000_init_frame_pc_first);
|
||||
|
||||
if (!sysv_abi)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user