diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-13 05:38:39 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-13 05:38:39 +0000 |
commit | d3f5de6dbda955a123762f80d53cbdde8c4290b2 (patch) | |
tree | 79f2aaa7627d8e3d1e0b25a205cabcf95160d735 /boehm-gc/dbg_mlc.c | |
parent | 4625cc70c2d1ed5d909a3c187b18036ad706a595 (diff) | |
download | gcc-d3f5de6dbda955a123762f80d53cbdde8c4290b2.tar.gz |
* dbg_mlc.c (GC_debug_generic_malloc): Removed.
* sparc_mach_dep.S: Rename from sparc_mach_dep.s as it is a
preprocessor file.
* mips_sgi_mach_dep.S: Likewise.
* Makefile.am: Update for above changes.
* Makefile.in: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49720 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/dbg_mlc.c')
-rw-r--r-- | boehm-gc/dbg_mlc.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/boehm-gc/dbg_mlc.c b/boehm-gc/dbg_mlc.c index e875c880f07..57de3dab28c 100644 --- a/boehm-gc/dbg_mlc.c +++ b/boehm-gc/dbg_mlc.c @@ -429,35 +429,6 @@ void GC_start_debugging() return (GC_store_debug_info(result, (word)lb, s, (word)i)); } -# ifdef __STDC__ - GC_PTR GC_debug_generic_malloc(size_t lb, int k, GC_EXTRA_PARAMS) -# else - GC_PTR GC_debug_malloc(lb, k, s, i) - size_t lb; - int k; - char * s; - int i; -# ifdef GC_ADD_CALLER - --> GC_ADD_CALLER not implemented for K&R C -# endif -# endif -{ - GC_PTR result = GC_generic_malloc(lb + DEBUG_BYTES, k); - - if (result == 0) { - GC_err_printf1("GC_debug_malloc(%ld) returning NIL (", - (unsigned long) lb); - GC_err_puts(s); - GC_err_printf1(":%ld)\n", (unsigned long)i); - return(0); - } - if (!GC_debugging_started) { - GC_start_debugging(); - } - ADD_CALL_CHAIN(result, ra); - return (GC_store_debug_info(result, (word)lb, s, (word)i)); -} - # ifdef DBG_HDRS_ALL /* * An allocation function for internal use. |