diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-06 21:21:17 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-05-06 21:21:17 +0000 |
commit | c15062b7ed8684a647d5dede3ef243056cb46158 (patch) | |
tree | 491e3c6ef8ca402fbc3d8111130a25e692c0587f /gcc/timevar.c | |
parent | 7b2e5f5646a37c16c810b766b4822a9236d4b143 (diff) | |
download | gcc-c15062b7ed8684a647d5dede3ef243056cb46158.tar.gz |
* timevar.c (timevar_print): Test ENABLE_ASSERT_CHECKING instead
of ASSERT_CHECKING. Tweak message.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124478 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/timevar.c')
-rw-r--r-- | gcc/timevar.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/timevar.c b/gcc/timevar.c index 01cc880e595..29142ab7d4e 100644 --- a/gcc/timevar.c +++ b/gcc/timevar.c @@ -483,10 +483,9 @@ timevar_print (FILE *fp) fprintf (fp, "Extra diagnostic checks enabled; compiler may run slowly.\n"); fprintf (fp, "Configure with --enable-checking=release to disable checks.\n"); #endif -#ifndef ASSERT_CHECKING - fprintf (fp, "Assert checking was disable; if you do an official compiling\n"); - fprintf (fp, "time testing please use --enable-checking=release instead of\n"); - fprintf (fp, "--disable-checking.\n"); +#ifndef ENABLE_ASSERT_CHECKING + fprintf (fp, "Internal checks disabled; compiler is not suited for release.\n"); + fprintf (fp, "Configure with --enable-checking=release to enable checks.\n"); #endif #endif /* defined (HAVE_USER_TIME) || defined (HAVE_SYS_TIME) |