[patch 2/3] Code cleanup: inferior_status fixup

Jan Kratochvil jan.kratochvil@redhat.com
Wed Nov 24 00:44:00 GMT 2010


Hi,

one field had wrong name (no matter if it may make semantical sense IMO at
this point the name should match the saved field).

step_resume_break_address field is redundant,
`git log -p -Sstep_resume_break_address' does not show any code using it.

There is no code change.


Thanks,
Jan


gdb/
2010-11-24  Jan Kratochvil  <jan.kratochvil@redhat.com>

	Code cleanup.
	* infrun.c (struct inferior_status) <stepping_over_breakpoint>
	(save_inferior_status) <stepping_over_breakpoint>
	(restore_inferior_status) <stepping_over_breakpoint>: Rename to
	trap_expected.
	(struct inferior_status) <step_resume_break_address>: Remove.

--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -6171,7 +6171,7 @@ struct inferior_status
   CORE_ADDR step_range_end;
   struct frame_id step_frame_id;
   struct frame_id step_stack_frame_id;
-  int stepping_over_breakpoint;
+  int trap_expected;
   int proceed_to_finish;
   int in_infcall;
   enum step_over_calls_kind step_over_calls;
@@ -6184,7 +6184,6 @@ struct inferior_status
   /* Other fields:  */
   enum stop_stack_kind stop_stack_dummy;
   int stopped_by_random_signal;
-  CORE_ADDR step_resume_break_address;
   int stop_after_trap;
 
   /* ID if the selected frame when the inferior function call was made.  */
@@ -6206,7 +6205,7 @@ save_inferior_status (void)
   inf_status->step_range_end = tp->step_range_end;
   inf_status->step_frame_id = tp->step_frame_id;
   inf_status->step_stack_frame_id = tp->step_stack_frame_id;
-  inf_status->stepping_over_breakpoint = tp->trap_expected;
+  inf_status->trap_expected = tp->trap_expected;
   inf_status->proceed_to_finish = tp->proceed_to_finish;
   inf_status->in_infcall = tp->in_infcall;
   inf_status->step_over_calls = tp->step_over_calls;
@@ -6266,7 +6265,7 @@ restore_inferior_status (struct inferior_status *inf_status)
   tp->step_range_end = inf_status->step_range_end;
   tp->step_frame_id = inf_status->step_frame_id;
   tp->step_stack_frame_id = inf_status->step_stack_frame_id;
-  tp->trap_expected = inf_status->stepping_over_breakpoint;
+  tp->trap_expected = inf_status->trap_expected;
   tp->proceed_to_finish = inf_status->proceed_to_finish;
   tp->in_infcall = inf_status->in_infcall;
   tp->step_over_calls = inf_status->step_over_calls;



More information about the Gdb-patches mailing list