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'
+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
 
                      char *arg, int is_command)
 {
   int n;
-  int cpu_nr;
 
   switch (opt)
     {
     case OPTION_TRACE_RANGE :
       if (WITH_TRACE)
        {
+         int cpu_nr;
          char *chp = arg;
          unsigned long start,end;
          start = strtoul (chp, &chp, 0);