sim/common/ChangeLog:
From John Wehle <john@feith.com> (tiny patch)
* sim-profile.c (profile_info): Only print the title once.
+2011-10-18 John Wehle <john@feith.com> (tiny patch)
+
+ * sim-profile.c (profile_info): Only print the title once.
+
2011-10-17 Mike Frysinger <vapier@gentoo.org>
* acinclude.m4: Rename from aclocal.m4.
/* FIXME: If the number of processors can be selected on the command line,
then MAX_NR_PROCESSORS will need to take an argument of `sd'. */
- for (c = 0; c < MAX_NR_PROCESSORS; ++c)
+ for (c = 0; c < MAX_NR_PROCESSORS && !print_title_p; ++c)
{
sim_cpu *cpu = STATE_CPU (sd, c);
PROFILE_DATA *data = CPU_PROFILE_DATA (cpu);
{
profile_printf (sd, cpu, "Summary profiling results:\n\n");
print_title_p = 1;
+ break;
}
}