diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-01 08:16:25 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-01 08:16:25 +0000 |
commit | bbb8ca064d01c76dd68e15166af039b6074806dc (patch) | |
tree | 3b43b1e5c740bd5316f62a3d857f18b639d3902c /gcc/gengenrtl.c | |
parent | 8aba075370c6d58c5ab822383c7e1939bb3237ff (diff) | |
download | gcc-bbb8ca064d01c76dd68e15166af039b6074806dc.tar.gz |
* gencheck.c, gengenrtl.c: Don't define xmalloc.
* gensupport.c: Don't define xstrdup, xcalloc, xrealloc,
xmalloc.
* f/fini.c: Use xmalloc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47506 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gengenrtl.c')
-rw-r--r-- | gcc/gengenrtl.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/gengenrtl.c b/gcc/gengenrtl.c index ad1bc7fce06..0d40025f76e 100644 --- a/gcc/gengenrtl.c +++ b/gcc/gengenrtl.c @@ -390,24 +390,6 @@ gencode () gendef (*fmt); } -#if defined(USE_C_ALLOCA) -PTR -xmalloc (nbytes) - size_t nbytes; -{ - PTR tmp = (PTR) really_call_malloc (nbytes); - - if (!tmp) - { - fprintf (stderr, "can't allocate %d bytes (out of virtual memory)\n", - nbytes); - exit (FATAL_EXIT_CODE); - } - - return tmp; -} -#endif /* USE_C_ALLOCA */ - /* This is the main program. We accept only one argument, "-h", which says we are writing the genrtl.h file. Otherwise we are writing the genrtl.c file. */ |