diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/system.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8644773..fa39283 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2008-04-11 James E. Wilson <wilson@tuliptree.org> + + * system.h: Change ASSERT_CHECKING to ENABLE_ASSERT_CHECKING. + 2008-04-11 H.J. Lu <hongjiu.lu@intel.com> * dse.c (record_store): Use HOST_BITS_PER_WIDE_INT instead diff --git a/gcc/system.h b/gcc/system.h index f138632..8e06b2d 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -802,7 +802,7 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; #pragma GCC diagnostic warning "-Wcast-qual" /* If asserts are disabled, activate -Wuninitialized as a warning (not an error/-Werror). */ -#ifndef ASSERT_CHECKING +#ifndef ENABLE_ASSERT_CHECKING #pragma GCC diagnostic warning "-Wuninitialized" #endif #endif |