]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2008-10-06 Michael Snyder <msnyder@vmware.com>
authorMichael Snyder <msnyder@vmware.com>
Mon, 6 Oct 2008 23:02:39 +0000 (23:02 +0000)
committerMichael Snyder <msnyder@vmware.com>
Mon, 6 Oct 2008 23:02:39 +0000 (23:02 +0000)
* infrun.c (handle_inferior_event): Formatting, spelling fix.

gdb/ChangeLog
gdb/infrun.c

index e6e66eaa7da6cf15de625806bb6602dfaf995c78..b9b426f83716207464878a2ab8615419fcd3572d 100644 (file)
@@ -1,3 +1,7 @@
+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".
@@ -18,7 +22,7 @@
        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.
index 1f407b61ddceaf68021fc12a51f9f84397fb5784..3f20d3289865827a8d98cc86bb5ae20743a24c07 100644 (file)
@@ -2884,8 +2884,8 @@ infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME (!gdbarch_get_longjmp_target)\n");
            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
@@ -3062,11 +3062,11 @@ infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME (!gdbarch_get_longjmp_target)\n");
                            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);