From db7e2f59cc87371336ba3a38ded6a061a6787a18 Mon Sep 17 00:00:00 2001 From: zack Date: Sat, 6 May 2000 20:00:03 +0000 Subject: 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 --- gcc/cpphash.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'gcc/cpphash.h') 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 -- cgit v1.2.1