diff options
author | James E Wilson <wilson@tuliptree.org> | 2008-04-12 00:13:44 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2008-04-12 00:13:44 -0700 |
commit | ad7aacbab6559173bff8764c1a771ae0c37ef868 (patch) | |
tree | 1fc277425dda8f4c2f724b3ed0b308a5096cef36 /gcc/system.h | |
parent | 21d16aade8c1f9e7a2709ad1d59d4c268b9b4ee4 (diff) | |
download | gcc-ad7aacbab6559173bff8764c1a771ae0c37ef868.tar.gz |
Fix bug reported by Andrew Pinski.
* system.h: Change ASSERT_CHECKING to ENABLE_ASSERT_CHECKING.
From-SVN: r134219
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/system.h b/gcc/system.h index f1386323d5e..8e06b2d6fef 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 |