diff options
author | Doug Evans <dje@google.com> | 1998-12-05 08:47:32 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-12-05 08:47:32 +0000 |
commit | 1932239a58259d8edd7196fb394536cf3229651c (patch) | |
tree | 9f13f8fde258378b5d045d35ffdf3f5990fcbb8f /sim/common | |
parent | 0a18a6b8adb8e5d3ec215cf53e20dce1c600e201 (diff) | |
download | gdb-1932239a58259d8edd7196fb394536cf3229651c.zip gdb-1932239a58259d8edd7196fb394536cf3229651c.tar.gz gdb-1932239a58259d8edd7196fb394536cf3229651c.tar.bz2 |
(profile_print_addr_range): Pretty up output a little.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/sim-profile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/common/sim-profile.c b/sim/common/sim-profile.c index 5a9805b..dff375b 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; } |