diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-25 09:57:31 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-25 09:57:31 +0000 |
commit | c495ccca83b5ba3e05f5545950ede67000286a93 (patch) | |
tree | 61e67baca12a0705ae062dae5c6c0d391428ca08 /gcc/timevar.c | |
parent | 874e95c7d28852e184c3d2cf80af75f9dcefbe15 (diff) | |
download | gcc-c495ccca83b5ba3e05f5545950ede67000286a93.tar.gz |
2011-06-25 Basile Starynkevitch <basile@starynkevitch.net>
* timevar.c (timevar_print): Increase width for display of timevar
name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@175396 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/timevar.c')
-rw-r--r-- | gcc/timevar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/timevar.c b/gcc/timevar.c index c87695bec82..96eb92ae3cd 100644 --- a/gcc/timevar.c +++ b/gcc/timevar.c @@ -478,7 +478,7 @@ timevar_print (FILE *fp) continue; /* The timing variable name. */ - fprintf (fp, " %-22s:", tv->name); + fprintf (fp, " %-24s:", tv->name); #ifdef HAVE_USER_TIME /* Print user-mode time for this process. */ |