From: Doug Evans Date: Sat, 5 Dec 1998 08:47:32 +0000 (+0000) Subject: (profile_print_addr_range): Pretty up output a little. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;ds=sidebyside;h=1932239a58259d8edd7196fb394536cf3229651c;p=deliverable%2Fbinutils-gdb.git (profile_print_addr_range): Pretty up output a little. --- diff --git a/sim/common/sim-profile.c b/sim/common/sim-profile.c index 5a9805ba5d..dff375bae8 100644 --- a/sim/common/sim-profile.c +++ b/sim/common/sim-profile.c @@ -906,10 +906,10 @@ profile_print_addr_ranges (sim_cpu *cpu) if (asr) { - sim_io_printf (sd, "Selected address ranges:\n"); + sim_io_printf (sd, "Selected address ranges:\n\n"); while (asr != NULL) { - sim_io_printf (sd, "0x%lx - 0x%lx\n", + sim_io_printf (sd, " 0x%lx - 0x%lx\n", (long) asr->start, (long) asr->end); asr = asr->next; }