2007-06-12 Markus Deuling <deuling@de.ibm.com>

* gdbarch.sh (TARGET_VIRTUAL_FRAME_POINTER): Replace by
	gdbarch_virtual_frame_pointer.
	* tracepoint.c (encode_actions): Likewise.
	* dwarf2loc.c (dwarf2_loc_desc_needs_frame): Likewise.
	* ax-gdb.c (gen_frame_args_address, gen_frame_locals_address): Likewise.
	* gdbarch.c, gdbarch.h: Regenerate.
This commit is contained in:
Ulrich Weigand
2007-06-12 16:43:39 +00:00
parent ea06eb3dd8
commit c7bb205ca9
7 changed files with 18 additions and 17 deletions

View File

@ -1539,7 +1539,8 @@ encode_actions (struct tracepoint *t, char ***tdp_actions,
*tdp_actions = NULL;
*stepping_actions = NULL;
TARGET_VIRTUAL_FRAME_POINTER (t->address, &frame_reg, &frame_offset);
gdbarch_virtual_frame_pointer (current_gdbarch,
t->address, &frame_reg, &frame_offset);
for (action = t->actions; action; action = action->next)
{