diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2007-05-06 21:21:17 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2007-05-06 21:21:17 +0000 |
commit | 982533a5b24488660e53ae55cfb4e036d84d31d8 (patch) | |
tree | 491e3c6ef8ca402fbc3d8111130a25e692c0587f | |
parent | 74b332b8a0f8965b3cd153a58dd25421127d7394 (diff) | |
download | gcc-982533a5b24488660e53ae55cfb4e036d84d31d8.zip gcc-982533a5b24488660e53ae55cfb4e036d84d31d8.tar.gz gcc-982533a5b24488660e53ae55cfb4e036d84d31d8.tar.bz2 |
timevar.c (timevar_print): Test ENABLE_ASSERT_CHECKING instead of ASSERT_CHECKING.
* timevar.c (timevar_print): Test ENABLE_ASSERT_CHECKING instead
of ASSERT_CHECKING. Tweak message.
From-SVN: r124478
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/timevar.c | 7 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d703c48..7453266 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,9 @@ -2007-06-05 Revital Eres <eres@il.ibm.com> +2007-05-06 Eric Botcazou <ebotcazou@adacore.com> + + * timevar.c (timevar_print): Test ENABLE_ASSERT_CHECKING instead + of ASSERT_CHECKING. Tweak message. + +2007-05-06 Revital Eres <eres@il.ibm.com> PR 30957 * loop-unroll.c (insert_var_expansion_initialization): diff --git a/gcc/timevar.c b/gcc/timevar.c index 01cc880..29142ab 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) |