2008-10-06 Michael Snyder <msnyder@vmware.com>
+ * infrun.c (handle_inferior_event, step_into_function): Formatting.
* infrun.c (handle_inferior_event): Formatting, spelling fix.
* infrun.c (handle_inferior_event): Add special case for
stop_stepping (ecs);
}
else
- {
- keep_going (ecs);
- }
+ keep_going (ecs);
+
return;
}
insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
}
else
- {
- /* Set a breakpoint at callee's return address (the address
- at which the caller will resume). */
- insert_step_resume_breakpoint_at_caller (get_current_frame ());
- }
+ /* Set a breakpoint at callee's return address (the address
+ at which the caller will resume). */
+ insert_step_resume_breakpoint_at_caller (get_current_frame ());
+
keep_going (ecs);
return;
}
No step-resume breakpoint, they don't work for
epilogues, which can have multiple entry paths. */
ecs->event_thread->step_range_start = stop_func_sal.pc;
- ecs->event_thread->step_range_end = stop_func_sal.end;
+ ecs->event_thread->step_range_end = stop_func_sal.end;
keep_going (ecs);
return;
}