This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] Remove unused local var in cmd_qtstart


I noticed that slow_tracepoint_count and fast_count are not used except
self-increment in one place.  They are not used when they appeared in
source repository for the first time.  This patch is to remove them.

-- 
Yao (éå)
2011-10-31  Yao Qi  <yao@codesourcery.com>

	* tracepoint.c (cmd_qtstart): Remove unused local variables.
---
 gdb/gdbserver/tracepoint.c |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/gdb/gdbserver/tracepoint.c b/gdb/gdbserver/tracepoint.c
index 06284fc..51d029f 100644
--- a/gdb/gdbserver/tracepoint.c
+++ b/gdb/gdbserver/tracepoint.c
@@ -2930,12 +2930,9 @@ static void
 cmd_qtstart (char *packet)
 {
   struct tracepoint *tpoint, *prev_ftpoint, *prev_stpoint;
-  int slow_tracepoint_count, fast_count;
 
   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 ();
@@ -2975,8 +2972,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
@@ -2986,8 +2981,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 "
-- 
1.7.0.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]