From 3cca99e83956d50fe451cb155d39eeac18e14d5f Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Thu, 2 Sep 1993 10:55:40 +0000 Subject: [PATCH] Add spaces in basic block output. From-SVN: r5250 --- gcc/libgcc2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 48c0b91d5d8..fb0a0a9cb58 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -1427,20 +1427,20 @@ __bb_exit_func (void) for (i = 0; i < ncounts; i++) { fprintf (file, - " Block #%*d: executed %*ld time(s) address=0x%.*lx", + " Block #%*d: executed %*ld time(s) address= 0x%.*lx", blk_len, i+1, cnt_len, ptr->counts[i], addr_len, ptr->addresses[i]); if (func_p) - fprintf (file, " function=%-*s", func_len, + fprintf (file, " function= %-*s", func_len, (ptr->functions[i]) ? ptr->functions[i] : ""); if (line_p) - fprintf (file, " line=%*d", line_len, ptr->line_nums[i]); + fprintf (file, " line= %*d", line_len, ptr->line_nums[i]); if (file_p) - fprintf (file, " file=%s", + fprintf (file, " file= %s", (ptr->filenames[i]) ? ptr->filenames[i] : ""); fprintf (file, "\n"); -- 2.30.2