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:
parent
85db1db4b9
commit
da08ea5b1e
2 changed files with 9 additions and 2 deletions
|
@ -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>
|
2003-08-20 Michael Snyder <msnyder@redhat.com>
|
||||||
|
|
||||||
* sh-tdep.h (struct gdbarch_tdep): New member FLOAT_ARGLAST_REG.
|
* sh-tdep.h (struct gdbarch_tdep): New member FLOAT_ARGLAST_REG.
|
||||||
|
|
|
@ -266,7 +266,7 @@ set_traceframe_context (CORE_ADDR trace_pc)
|
||||||
set_internalvar (lookup_internalvar ("trace_file"),
|
set_internalvar (lookup_internalvar ("trace_file"),
|
||||||
value_from_pointer (charstar, (LONGEST) 0));
|
value_from_pointer (charstar, (LONGEST) 0));
|
||||||
set_internalvar (lookup_internalvar ("trace_line"),
|
set_internalvar (lookup_internalvar ("trace_line"),
|
||||||
value_from_pointer (builtin_type_int, (LONGEST) - 1));
|
value_from_longest (builtin_type_int, (LONGEST) - 1));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2511,7 +2511,7 @@ trace_dump_command (char *args, int from_tty)
|
||||||
to the tracepoint PC. If not, then the current frame was
|
to the tracepoint PC. If not, then the current frame was
|
||||||
collected during single-stepping. */
|
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)
|
for (action = t->actions; action; action = action->next)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue