Commit 75e853f2 by Daniel Berlin Committed by Daniel Berlin

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
parent b1521c3a
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> 2004-01-28 Giovanni Bajo <giovannibajo@gcc.gnu.org>
* c-lex.c (c_lex): Rename to... * c-lex.c (c_lex): Rename to...
......
...@@ -498,6 +498,11 @@ timevar_print (FILE *fp) ...@@ -498,6 +498,11 @@ timevar_print (FILE *fp)
fprintf (fp, "%7.2f\n", total->wall); fprintf (fp, "%7.2f\n", total->wall);
#endif #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) #endif /* defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME)
|| defined (HAVE_WALL_TIME) */ || defined (HAVE_WALL_TIME) */
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment