diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-12-17 17:27:45 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-12-17 17:27:45 +0000 |
commit | 30f7db39bd8169c551fd7efcf91b682292013db5 (patch) | |
tree | 2b2d224d591b6096df844949102ebbdbf6790a13 /gdb/breakpoint.c | |
parent | 4cd898632ac64fbba00bab4654e8b124ee7736ca (diff) | |
download | gdb-30f7db39bd8169c551fd7efcf91b682292013db5.zip gdb-30f7db39bd8169c551fd7efcf91b682292013db5.tar.gz gdb-30f7db39bd8169c551fd7efcf91b682292013db5.tar.bz2 |
2002-12-17 Andrew Cagney <ac131313@redhat.com>
* stack.c (frame_info): Use get_frame_saved_regs.
* breakpoint.c (until_break_command): Use get_frame_pc.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index d575b53..88eb634 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -5649,8 +5649,8 @@ until_break_command (char *arg, int from_tty) if (prev_frame) { - sal = find_pc_line (prev_frame->pc, 0); - sal.pc = prev_frame->pc; + sal = find_pc_line (get_frame_pc (prev_frame), 0); + sal.pc = get_frame_pc (prev_frame); breakpoint = set_momentary_breakpoint (sal, get_frame_id (prev_frame), bp_until); if (!event_loop_p || !target_can_async_p ()) |