summaryrefslogtreecommitdiff
path: root/gdb/infrun.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-12-13 21:57:40 +0000
committerAndrew Cagney <cagney@redhat.com>2002-12-13 21:57:40 +0000
commitf9850b9897dbf3c5d5eb4de5e68099bc231e3a1b (patch)
tree969542838b5f813a051afab3663308a7056fd6f7 /gdb/infrun.c
parent83c224307eafb85ab2ad560b0d5fb59486aff482 (diff)
downloadgdb-f9850b9897dbf3c5d5eb4de5e68099bc231e3a1b.tar.gz
2002-12-13 Andrew Cagney <ac131313@redhat.com>
* frame.c (deprecated_update_current_frame_pc_hack): New function. * frame.h (deprecated_update_current_frame_pc_hack): Declare. * infrun.c (normal_stop): Use said function instead of directly modifying the frame's PC.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r--gdb/infrun.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c
index b1db8cbe912..664351ef77b 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -3066,8 +3066,12 @@ normal_stop (void)
/* Make sure that the current_frame's pc is correct. This
is a correction for setting up the frame info before doing
DECR_PC_AFTER_BREAK */
- if (target_has_execution && get_current_frame ())
- (get_current_frame ())->pc = read_pc ();
+ if (target_has_execution)
+ /* FIXME: cagney/2002-12-06: Has the PC changed? Thanks to
+ DECR_PC_AFTER_BREAK, the program counter can change. Ask the
+ frame code to check for this and sort out any resultant mess.
+ DECR_PC_AFTER_BREAK needs to just go away. */
+ deprecated_update_current_frame_pc_hack (read_pc ());
if (target_has_execution && breakpoints_inserted)
{