mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 11:01:35 +08:00
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:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user