diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-17 15:00:11 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-17 15:00:11 +0000 |
commit | 0aa40958727e98cae1ec6091810bde2838d55b3d (patch) | |
tree | 80b89240a48844dc4084342e504e7630722b7734 /gcc/gengenrtl.c | |
parent | 1d322a970556023c6ef430b2617c126fefb1e9d2 (diff) | |
download | gcc-0aa40958727e98cae1ec6091810bde2838d55b3d.tar.gz |
* alloca.c: Respect USE_C_ALLOCA.
* gencheck.c (xmalloc): Ignore __GNUC__ for definition.
* gengenrtl.c (xmalloc): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21264 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gengenrtl.c')
-rw-r--r-- | gcc/gengenrtl.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gcc/gengenrtl.c b/gcc/gengenrtl.c index ade07ff4b6c..73eb39d7963 100644 --- a/gcc/gengenrtl.c +++ b/gcc/gengenrtl.c @@ -22,10 +22,6 @@ Boston, MA 02111-1307, USA. */ #include "hconfig.h" #include "system.h" -#include "obstack.h" -#define obstack_chunk_alloc xmalloc -#define obstack_chunk_free free - #define NO_GENRTL_H #include "rtl.h" @@ -284,7 +280,7 @@ gencode (f) gendef (f, *fmt); } -#if defined(USE_C_ALLOCA) && !defined(__GNUC__) +#if defined(USE_C_ALLOCA) char * xmalloc (nbytes) int nbytes; @@ -293,13 +289,14 @@ xmalloc (nbytes) if (!tmp) { - fprintf (stderr, "can't allocate %d bytes (out of virtual memory)\n", nbytes); + fprintf (stderr, "can't allocate %d bytes (out of virtual memory)\n", + nbytes); exit (FATAL_EXIT_CODE); } return tmp; } -#endif /* USE_C_ALLOCA && !__GNUC__ */ +#endif /* USE_C_ALLOCA */ int main(argc, argv) |