aboutsummaryrefslogtreecommitdiff
path: root/gcc/gencheck.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@codesourcery.com>2001-12-01 08:16:25 +0000
committerZack Weinberg <zack@gcc.gnu.org>2001-12-01 08:16:25 +0000
commitcfc45fb499aafa52c6b13b259a1a10acd67fcd9c (patch)
tree3b43b1e5c740bd5316f62a3d857f18b639d3902c /gcc/gencheck.c
parentaf46cdde202aec94a5f65dc69a1f1f0a9704c67b (diff)
downloadgcc-cfc45fb499aafa52c6b13b259a1a10acd67fcd9c.zip
gcc-cfc45fb499aafa52c6b13b259a1a10acd67fcd9c.tar.gz
gcc-cfc45fb499aafa52c6b13b259a1a10acd67fcd9c.tar.bz2
gencheck.c, [...]: Don't define xmalloc.
* gencheck.c, gengenrtl.c: Don't define xmalloc. * gensupport.c: Don't define xstrdup, xcalloc, xrealloc, xmalloc. * f/fini.c: Use xmalloc. From-SVN: r47506
Diffstat (limited to 'gcc/gencheck.c')
-rw-r--r--gcc/gencheck.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/gencheck.c b/gcc/gencheck.c
index 8736450..c676ef9 100644
--- a/gcc/gencheck.c
+++ b/gcc/gencheck.c
@@ -70,24 +70,3 @@ main (argc, argv)
puts ("\n#endif /* GCC_TREE_CHECK_H */");
return 0;
}
-
-#if defined(USE_C_ALLOCA)
-/* FIXME: We only need an xmalloc definition because we are forced to
- link with alloca.o on some platforms. This should go away if/when
- we link against libiberty.a. (ghazi@caip.rutgers.edu 6/3/98) */
-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 */