+2008-10-06 Michael Snyder <msnyder@vmware.com>
+
+ * infrun.c (handle_inferior_event): Formatting, spelling fix.
+
2008-10-04 Hui Zhu <teawater@gmail.com>
Change from "to_prepare_to_store" to "to_store_registers".
record_beneath_to_prepare_to_store to
record_beneath_to_store_registers.
-2008-10-06 Michael Snyder <msnyder@promb-2s-dhcp59.eng.vmware.com>
+2008-10-06 Michael Snyder <msnyder@vmware.com>
* regcache.c (regcache_raw_write): Remove global variable.
No need to include "record.h" now.
keep_going (ecs);
return;
}
- if (stop_pc == ecs->stop_func_start &&
- target_get_execution_direction () == EXEC_REVERSE)
+ if (stop_pc == ecs->stop_func_start
+ && target_get_execution_direction () == EXEC_REVERSE)
{
/* We are stepping over a function call in reverse, and
just hit the step-resume breakpoint at the start
paddr_nz (step_range_end));
/* When stepping backward, stop at beginning of line range
- (unles it's the function entry point, in which case
+ (unless it's the function entry point, in which case
keep going back to the call point). */
- if (stop_pc == step_range_start &&
- stop_pc != ecs->stop_func_start &&
- target_get_execution_direction () == EXEC_REVERSE)
+ if (stop_pc == step_range_start
+ && stop_pc != ecs->stop_func_start
+ && target_get_execution_direction () == EXEC_REVERSE)
{
stop_step = 1;
print_stop_reason (END_STEPPING_RANGE, 0);