summaryrefslogtreecommitdiff
path: root/gdb/macroscope.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-12-09 03:30:44 +0000
committerAndrew Cagney <cagney@redhat.com>2002-12-09 03:30:44 +0000
commit4deaf592eb548cdbeb9bb1ede8bf8e33406e3e8b (patch)
treef86eab238b66894525b6c4e05a8d0a443375930f /gdb/macroscope.c
parent69a09bef56cc37df7000fc137117941e41faae3a (diff)
downloadgdb-4deaf592eb548cdbeb9bb1ede8bf8e33406e3e8b.tar.gz
2002-12-07 Andrew Cagney <ac131313@redhat.com>
* f-valprint.c (info_common_command): Use get_frame_pc. * std-regs.c (value_of_builtin_frame_pc_reg): Ditto. * ax-gdb.c (agent_command): Ditto. * rs6000-tdep.c (rs6000_init_extra_frame_info): Ditto. (rs6000_pop_frame): Ditto. (rs6000_frameless_function_invocation): Ditto. (rs6000_frame_saved_pc, frame_get_saved_regs): Ditto. (frame_initial_stack_address, rs6000_frame_chain): Ditto. * macroscope.c (default_macro_scope): Ditto. * stack.c (print_frame_info_base): Ditto. (print_frame, frame_info, print_frame_label_vars): Ditto. (return_command, func_command, get_frame_language): Ditto. * infcmd.c (finish_command): Ditto. * dummy-frame.c (cached_find_dummy_frame): Ditto. * breakpoint.c (deprecated_frame_in_dummy): Ditto. (break_at_finish_at_depth_command_1): Ditto. (break_at_finish_command_1): Ditto. (until_break_command, get_catch_sals): Ditto. * blockframe.c (func_frame_chain_valid): Ditto. (frameless_look_for_prologue): Ditto. (frame_address_in_block, generic_func_frame_chain_valid): Ditto.
Diffstat (limited to 'gdb/macroscope.c')
-rw-r--r--gdb/macroscope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/macroscope.c b/gdb/macroscope.c
index c6da69891cd..19557d7dc08 100644
--- a/gdb/macroscope.c
+++ b/gdb/macroscope.c
@@ -88,7 +88,7 @@ default_macro_scope (void)
/* If there's a selected frame, use its PC. */
if (deprecated_selected_frame)
- sal = find_pc_line (deprecated_selected_frame->pc, 0);
+ sal = find_pc_line (get_frame_pc (deprecated_selected_frame), 0);
/* If the target has any registers at all, then use its PC. Why we
would have registers but no stack, I'm not sure. */