From: Basile Starynkevitch Date: Sat, 25 Jun 2011 09:57:31 +0000 (+0000) Subject: timevar.c (timevar_print): Increase width for display of timevar name. X-Git-Tag: releases/gcc-4.7.0~5783 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=534611994759f9a7c74d00ae90bc3d49c8e34340;p=thirdparty%2Fgcc.git timevar.c (timevar_print): Increase width for display of timevar name. 2011-06-25 Basile Starynkevitch * timevar.c (timevar_print): Increase width for display of timevar name. From-SVN: r175396 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 54b8fdba271f..71179bf2e112 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ + +2011-06-25  Basile Starynkevitch   + + * timevar.c (timevar_print): Increase width for display of timevar + name. + 2011-06-24 Jakub Jelinek PR c++/46400 diff --git a/gcc/timevar.c b/gcc/timevar.c index c87695bec822..96eb92ae3cd7 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. */