From: Kaveh R. Ghazi Date: Mon, 1 Feb 1999 06:49:19 +0000 (+0000) Subject: system.h (inline, const): Handle these for stage2 (and later) gcc. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ab7c205e79d2198c0318b639cf4272044049d3ba;p=gcc.git system.h (inline, const): Handle these for stage2 (and later) gcc. * system.h (inline, const): Handle these for stage2 (and later) gcc. * dwarf2out.c (inline): Don't define. * dwarfout.c (inline): Likewise. From-SVN: r24950 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 28ac1cd4efa..8abe3ab169e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +Mon Feb 1 09:40:25 1999 Kaveh R. Ghazi + + * system.h (inline, const): Handle these for stage2 (and later) gcc. + + * dwarf2out.c (inline): Don't define. + + * dwarfout.c (inline): Likewise. + Sun Jan 31 22:04:37 1999 Richard Henderson * loop.c (recombine_givs): Dump recombination and derivation data. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index ba0caa31533..16e5bc37f6e 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -72,10 +72,6 @@ dwarf2out_do_frame () #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO) -#ifndef __GNUC__ -#define inline -#endif - /* How to start an assembler comment. */ #ifndef ASM_COMMENT_START #define ASM_COMMENT_START ";#" diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 1a59ac7768e..dd4ff1da2ab 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -63,10 +63,6 @@ extern char *getpwd PROTO((void)); /* Note that the implementation of C++ support herein is (as yet) unfinished. If you want to try to complete it, more power to you. */ -#if !defined(__GNUC__) || (NDEBUG != 1) -#define inline -#endif - /* How to start an assembler comment. */ #ifndef ASM_COMMENT_START #define ASM_COMMENT_START ";#" diff --git a/gcc/system.h b/gcc/system.h index 7390974fa56..0de71332189 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -22,6 +22,18 @@ Boston, MA 02111-1307, USA. */ #ifndef __GCC_SYSTEM_H__ #define __GCC_SYSTEM_H__ +/* Autoconf will possibly define the `inline' or `const' keywords as + macros, however this is only valid for the stage1 compiler. If we + detect a modern version of gcc, unconditionally reset the values. + This makes sure the right thing happens in stage2 and later. We + need to do this before any header files in case they use these + keywords or conflicts might occur. */ +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) +# undef const +# undef inline +# define inline __inline__ /* Modern gcc can use `__inline__' freely. */ +#endif /* GCC >= 2.7 */ + /* We must include stdarg.h/varargs.h before stdio.h. */ #ifdef ANSI_PROTOTYPES #include @@ -392,7 +404,6 @@ extern void abort (); # endif #endif /* ! STRINGIFY */ - /* These macros are here in preparation for the use of gettext in egcs. */ #define _(String) String #define N_(String) String