sim: fix unused cpu_nr warnings
authorMike Frysinger <vapier@gentoo.org>
Tue, 30 Mar 2010 20:39:38 +0000 (20:39 +0000)
committerMike Frysinger <vapier@gentoo.org>
Tue, 30 Mar 2010 20:39:38 +0000 (20:39 +0000)
The trace_option_handler() function only uses cpu_nr when the
SIM_HAVE_ADDR_RANGE define is enabled.  So move the decl down
to where the code exists.  Otherwise GCC warns:
sim-trace.c: In function 'trace_option_handler':
sim-trace.c:236: warning: unused variable 'cpu_nr'

sim/common/ChangeLog
sim/common/sim-trace.c

index 50418a74e9e031056ee953fedf9bc0fa3aee970f..64278e0cf6129d38de799fca398274d782e72477 100644 (file)
@@ -1,3 +1,8 @@
+2010-03-30  Mike Frysinger  <vapier@gentoo.org>
+
+       * sim-trace.c (trace_option_handler): Move cpu_nr decl behind
+       the SIM_HAVE_ADDR_RANGE define.
+
 2010-03-30  Mike Frysinger  <vapier@gentoo.org>
 
        * sim-core.h (device_error): Add const to message, and add printf
index 9bb24582cbeb712e0521aa5c2fb1ea0ecea09cf2..478cbfa27d0dfb64861b36cd0f8e62b728b9f5cc 100644 (file)
@@ -233,7 +233,6 @@ trace_option_handler (SIM_DESC sd, sim_cpu *cpu, int opt,
                      char *arg, int is_command)
 {
   int n;
-  int cpu_nr;
 
   switch (opt)
     {
@@ -353,6 +352,7 @@ trace_option_handler (SIM_DESC sd, sim_cpu *cpu, int opt,
     case OPTION_TRACE_RANGE :
       if (WITH_TRACE)
        {
+         int cpu_nr;
          char *chp = arg;
          unsigned long start,end;
          start = strtoul (chp, &chp, 0);