summaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2011-10-19 00:54:03 +0000
committerJoel Brobecker <brobecker@gnat.com>2011-10-19 00:54:03 +0000
commit7d7cfa07a6bf37e33296d960dda2187cd944f118 (patch)
treee2d6b95e0a3b10c59f01bb3e824945d349dcafce /sim
parent5a049d5c3979bb4bd5397b1081122e9a4899e171 (diff)
downloadgdb-7d7cfa07a6bf37e33296d960dda2187cd944f118.tar.gz
[sim]: Only print the profile info title once.
sim/common/ChangeLog: From John Wehle <john@feith.com> (tiny patch) * sim-profile.c (profile_info): Only print the title once.
Diffstat (limited to 'sim')
-rw-r--r--sim/common/ChangeLog4
-rw-r--r--sim/common/sim-profile.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index 1dcbe3f0171..3ea34229cf9 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,3 +1,7 @@
+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.
diff --git a/sim/common/sim-profile.c b/sim/common/sim-profile.c
index 76964196834..83e964d470a 100644
--- a/sim/common/sim-profile.c
+++ b/sim/common/sim-profile.c
@@ -1132,7 +1132,7 @@ profile_info (SIM_DESC sd, int verbose)
/* 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);
@@ -1142,6 +1142,7 @@ profile_info (SIM_DESC sd, int verbose)
{
profile_printf (sd, cpu, "Summary profiling results:\n\n");
print_title_p = 1;
+ break;
}
}