diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2013-10-19 22:05:06 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2013-10-19 22:05:06 +0000 |
commit | 84935d2519f2bfa99ed7fa6224e6e20e049b8042 (patch) | |
tree | 1a23490598be2293af8f4a15d528f68e9101e78f | |
parent | d7d1451a798ea1e6f241f6058327c9160202b44f (diff) | |
download | gcc-84935d2519f2bfa99ed7fa6224e6e20e049b8042.zip gcc-84935d2519f2bfa99ed7fa6224e6e20e049b8042.tar.gz gcc-84935d2519f2bfa99ed7fa6224e6e20e049b8042.tar.bz2 |
re PR target/58603 (hash-table.h:962: error: anachronistic old-style base class initia)
PR target/58603
* system.h: Undef m_slot.
From-SVN: r203864
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/system.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 198b095..1915f09 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-10-19 John David Anglin <danglin@gcc.gnu.org> + + PR target/58603 + * system.h: Undef m_slot. + 2013-10-19 Bill Schmidt <wschmidt@linux.vnet.ibm.com> * config/rs6000/rs6000.c (vspltis_constant): Make sure we check diff --git a/gcc/system.h b/gcc/system.h index fab1c7b..ce817d4 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -264,8 +264,9 @@ extern int errno; #ifdef HAVE_SYS_PARAM_H # include <sys/param.h> -/* We use this identifier later and it appears in some vendor param.h's. */ +/* We use these identifiers later and they appear in some vendor param.h's. */ # undef PREFETCH +# undef m_slot #endif #if HAVE_LIMITS_H |