2002-11-19 Andrew Cagney <ac131313@redhat.com>
[deliverable/binutils-gdb.git] / gdb / infcmd.c
index 2556221f29d1d400c14ca9a0bf92340bd2a69e8c..65995d3fb6907cff7a56e0d96c5168e2429f455a 100644 (file)
@@ -618,7 +618,7 @@ step_1 (int skip_subroutines, int single_inst, char *count_string)
          frame = get_current_frame ();
          if (!frame)           /* Avoid coredump here.  Why tho? */
            error ("No current frame");
-         step_frame_address = FRAME_FP (frame);
+         step_frame_address = get_frame_base (frame);
          step_sp = read_sp ();
 
          if (!single_inst)
@@ -733,7 +733,7 @@ step_once (int skip_subroutines, int single_inst, int count)
       frame = get_current_frame ();
       if (!frame)              /* Avoid coredump here.  Why tho? */
        error ("No current frame");
-      step_frame_address = FRAME_FP (frame);
+      step_frame_address = get_frame_base (frame);
       step_sp = read_sp ();
 
       if (!single_inst)
@@ -1096,7 +1096,7 @@ until_next_command (int from_tty)
     }
 
   step_over_calls = STEP_OVER_ALL;
-  step_frame_address = FRAME_FP (frame);
+  step_frame_address = get_frame_base (frame);
   step_sp = read_sp ();
 
   step_multi = 0;              /* Only one call to proceed */
This page took 0.024221 seconds and 4 git commands to generate.