sim: fix unused profile_print_addr_ranges warning
authorMike Frysinger <vapier@gentoo.org>
Tue, 30 Mar 2010 20:35:39 +0000 (20:35 +0000)
committerMike Frysinger <vapier@gentoo.org>
Tue, 30 Mar 2010 20:35:39 +0000 (20:35 +0000)
The profile_print_addr_ranges() function is only used when
SIM_HAVE_ADDR_RANGE is defined, so #ifdef it accordingly.

sim/common/ChangeLog
sim/common/sim-profile.c

index 15fbf8ef42f9e308222c6dbd8cbab2d69fa74e28..7c5e1b7c7339b85a24d44b188959f4131c312844 100644 (file)
@@ -1,3 +1,8 @@
+2010-03-30  Mike Frysinger  <vapier@gentoo.org>
+
+       * sim-profile.c (profile_print_addr_ranges): Wrap with the
+       SIM_HAVE_ADDR_RANGE define.
+
 2010-03-30  Mike Frysinger  <vapier@gentoo.org>
 
        * dv-glue.c (hw_glue_ports): Swap static and const.
index 408f20591c4d87ab3248d961e1a264545f997c6e..dabf14a1d653c883f1ae197003f5d90ee3659fb4 100644 (file)
@@ -1051,6 +1051,7 @@ profile_print_speed (sim_cpu *cpu)
     }
 }
 
+#ifdef SIM_HAVE_ADDR_RANGE
 /* Print selected address ranges.  */
 
 static void
@@ -1071,6 +1072,7 @@ profile_print_addr_ranges (sim_cpu *cpu)
       sim_io_printf (sd, "\n");
     }
 }
+#endif
 
 /* Top level function to print all summary profile information.
    It is [currently] intended that all such data is printed by this function.