* m68k-tdep.c (m68k_frameless_function_invocation): Remove
function. (m68k_gdbarch_init): Don't set deprecated_frameless_function_invocation.
This commit is contained in:
parent
3f980e41d7
commit
7553697134
2 changed files with 7 additions and 15 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2004-05-08 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* m68k-tdep.c (m68k_frameless_function_invocation): Remove
|
||||||
|
function.
|
||||||
|
(m68k_gdbarch_init): Don't set
|
||||||
|
deprecated_frameless_function_invocation.
|
||||||
|
|
||||||
2004-05-07 Randolph Chung <tausq@debian.org>
|
2004-05-07 Randolph Chung <tausq@debian.org>
|
||||||
|
|
||||||
* hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
|
* hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
|
||||||
|
|
|
@ -327,20 +327,6 @@ m68k_svr4_return_value (struct gdbarch *gdbarch, struct type *type,
|
||||||
return RETURN_VALUE_REGISTER_CONVENTION;
|
return RETURN_VALUE_REGISTER_CONVENTION;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* A function that tells us whether the function invocation represented
|
|
||||||
by fi does not have a frame on the stack associated with it. If it
|
|
||||||
does not, FRAMELESS is set to 1, else 0. */
|
|
||||||
|
|
||||||
static int
|
|
||||||
m68k_frameless_function_invocation (struct frame_info *fi)
|
|
||||||
{
|
|
||||||
if (get_frame_type (fi) == SIGTRAMP_FRAME)
|
|
||||||
return 0;
|
|
||||||
else
|
|
||||||
return legacy_frameless_look_for_prologue (fi);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
delta68_in_sigtramp (CORE_ADDR pc, char *name)
|
delta68_in_sigtramp (CORE_ADDR pc, char *name)
|
||||||
{
|
{
|
||||||
|
@ -1111,7 +1097,6 @@ m68k_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||||
set_gdbarch_believe_pcc_promotion (gdbarch, 1);
|
set_gdbarch_believe_pcc_promotion (gdbarch, 1);
|
||||||
set_gdbarch_decr_pc_after_break (gdbarch, 2);
|
set_gdbarch_decr_pc_after_break (gdbarch, 2);
|
||||||
|
|
||||||
set_gdbarch_deprecated_frameless_function_invocation (gdbarch, m68k_frameless_function_invocation);
|
|
||||||
set_gdbarch_frame_args_skip (gdbarch, 8);
|
set_gdbarch_frame_args_skip (gdbarch, 8);
|
||||||
|
|
||||||
set_gdbarch_register_type (gdbarch, m68k_register_type);
|
set_gdbarch_register_type (gdbarch, m68k_register_type);
|
||||||
|
|
Loading…
Reference in a new issue