2003-08-21 Michael Snyder <msnyder@redhat.com>

* tracepoint.c (trace_dump_command): Trace break address
	is subject to DECR_PC_AFTER_BREAK.
        (set_traceframe_context): Make "trace_line" an int.
        Fixes suggested	by Mark	Newman	 <mark.newman@lmco.com>
This commit is contained in:
Michael Snyder 2003-08-21 18:09:54 +00:00
parent 85db1db4b9
commit da08ea5b1e
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2003-08-21 Michael Snyder <msnyder@redhat.com>
* tracepoint.c (trace_dump_command): Trace break address
is subject to DECR_PC_AFTER_BREAK.
(set_traceframe_context): Make "trace_line" an int.
Fixes suggested by Mark Newman <mark.newman@lmco.com>
2003-08-20 Michael Snyder <msnyder@redhat.com>
* sh-tdep.h (struct gdbarch_tdep): New member FLOAT_ARGLAST_REG.

View File

@ -266,7 +266,7 @@ set_traceframe_context (CORE_ADDR trace_pc)
set_internalvar (lookup_internalvar ("trace_file"),
value_from_pointer (charstar, (LONGEST) 0));
set_internalvar (lookup_internalvar ("trace_line"),
value_from_pointer (builtin_type_int, (LONGEST) - 1));
value_from_longest (builtin_type_int, (LONGEST) - 1));
return;
}
@ -2511,7 +2511,7 @@ trace_dump_command (char *args, int from_tty)
to the tracepoint PC. If not, then the current frame was
collected during single-stepping. */
stepping_frame = (t->address != read_pc ());
stepping_frame = (t->address != (read_pc () - DECR_PC_AFTER_BREAK));
for (action = t->actions; action; action = action->next)
{