diff options
author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-29 05:31:47 +0000 |
---|---|---|
committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-29 05:31:47 +0000 |
commit | 8abdf97f3c76683874d6f7909798e976e8dc499e (patch) | |
tree | 3fcfaf6b1bfa3cd7e92d483b57d4c918cb31167a /gcc/timevar.c | |
parent | cd2e98f7191430f5706d75b1e7cc38427d4c2be3 (diff) | |
download | gcc-8abdf97f3c76683874d6f7909798e976e8dc499e.tar.gz |
2004-01-28 Daniel Berlin <dberlin@dberlin.org>
* timevar.c (timevar_print): Mention when checking is enabled.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76848 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/timevar.c')
-rw-r--r-- | gcc/timevar.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/timevar.c b/gcc/timevar.c index 9746488c649..2597177f763 100644 --- a/gcc/timevar.c +++ b/gcc/timevar.c @@ -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) */ } |