timevar.c (timevar_print): Mention when checking is enabled.

2004-01-28  Daniel Berlin  <dberlin@dberlin.org>

	* timevar.c (timevar_print): Mention when checking is enabled.

From-SVN: r76848
This commit is contained in:
Daniel Berlin 2004-01-29 05:31:47 +00:00 committed by Daniel Berlin
parent b1521c3afa
commit 75e853f2c3
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-01-28 Daniel Berlin <dberlin@dberlin.org>
* timevar.c (timevar_print): Mention when checking is enabled.
2004-01-28 Giovanni Bajo <giovannibajo@gcc.gnu.org>
* c-lex.c (c_lex): Rename to...

View File

@ -498,6 +498,11 @@ timevar_print (FILE *fp)
fprintf (fp, "%7.2f\n", total->wall);
#endif
#ifdef ENABLE_CHECKING
fprintf (fp, "Extra diagnostic checks enabled; compiler may run slowly.\n");
fprintf (fp, "Configure with --disable-checking to disable checks.\n");
#endif
#endif /* defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME)
|| defined (HAVE_WALL_TIME) */
}