diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-06 20:00:03 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-06 20:00:03 +0000 |
commit | db7e2f59cc87371336ba3a38ded6a061a6787a18 (patch) | |
tree | 6f7e2ff75e7f61fbe2cbff3e77a3c645d858d240 /gcc/cpphash.h | |
parent | 435176698aa826a6a67fcffeccb3237d54ec0656 (diff) | |
download | gcc-db7e2f59cc87371336ba3a38ded6a061a6787a18.tar.gz |
gcc:
* cpphash.h: Remove conditional #define of __extension__.
* rtl.h: Add __extension__ to RTL_CHECK1, RTL_CHECK2,
RTL_CHECKC1, RTL_CHECKC2, and RTVEC_ELT macros
(ENABLE_RTL_CHECKING only).
* tree.h: Add __extension__ to TREE_CHECK, TREE_CLASS_CHECK,
CST_OR_CONSTRUCTOR_CHECK, and EXPR_CHECK macros
(ENABLE_TREE_CHECKING only).
* varray.h: Add __extension__ to VARRAY_CHECK macro
(ENABLE_CHECKING only).
include:
* ansidecl.h: #define __extension__ to nothing if
GCC_VERSION < 2008.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33733 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpphash.h')
-rw-r--r-- | gcc/cpphash.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 16de5bb1259..925aac7601f 100644 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -25,13 +25,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ typedef unsigned char U_CHAR; #define U (const U_CHAR *) /* Intended use: U"string" */ -/* gcc 2.7.2 can't handle __extension__ const char array[] = { ... }. - I don't know when this was added - be conservative, assume it only - works in 2.95. */ -#if GCC_VERSION < 2095 -#define __extension__ -#endif - /* The structure of a node in the hash table. The hash table has entries for all tokens defined by #define commands (type T_MACRO), plus some special tokens like __LINE__ (these each have their own |