gdb/gdbserver/
* tracepoint.c (cmd_qtstart): Remove unused local variables.
This commit is contained in:
parent
609086b1aa
commit
fd0d8c7ca3
2 changed files with 4 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-11-02 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* tracepoint.c (cmd_qtstart): Remove unused local variables.
|
||||
|
||||
2011-11-02 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* target.h: Fix a typo in comment.
|
||||
|
|
|
@ -2740,7 +2740,6 @@ static void
|
|||
cmd_qtstart (char *packet)
|
||||
{
|
||||
struct tracepoint *tpoint, *prev_ftpoint, *prev_stpoint;
|
||||
int slow_tracepoint_count, fast_count;
|
||||
CORE_ADDR jump_entry;
|
||||
|
||||
/* The jump to the jump pad of the last fast tracepoint
|
||||
|
@ -2750,8 +2749,6 @@ cmd_qtstart (char *packet)
|
|||
|
||||
trace_debug ("Starting the trace");
|
||||
|
||||
slow_tracepoint_count = fast_count = 0;
|
||||
|
||||
/* Sort tracepoints by ascending address. This makes installing
|
||||
fast tracepoints at the same address easier to handle. */
|
||||
sort_tracepoints ();
|
||||
|
@ -2791,8 +2788,6 @@ cmd_qtstart (char *packet)
|
|||
|
||||
if (tpoint->type == trap_tracepoint)
|
||||
{
|
||||
++slow_tracepoint_count;
|
||||
|
||||
/* Tracepoints are installed as memory breakpoints. Just go
|
||||
ahead and install the trap. The breakpoints module
|
||||
handles duplicated breakpoints, and the memory read
|
||||
|
@ -2802,8 +2797,6 @@ cmd_qtstart (char *packet)
|
|||
}
|
||||
else if (tpoint->type == fast_tracepoint)
|
||||
{
|
||||
++fast_count;
|
||||
|
||||
if (maybe_write_ipa_not_loaded (packet))
|
||||
{
|
||||
trace_debug ("Requested a fast tracepoint, but fast "
|
||||
|
|
Loading…
Reference in a new issue