summaryrefslogtreecommitdiff
path: root/typd_mlc.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2016-07-25 20:24:27 +0300
committerIvan Maidanski <ivmai@mail.ru>2016-07-25 20:24:27 +0300
commit662e5b53bcfcd00353655b2ebfe5bbca53d65d30 (patch)
tree5a2f26f69b00b2c6d7d7ebeda198de3bd53f6195 /typd_mlc.c
parent017bd0a6bbe6d3c5d404c265bf4700ec7abffa20 (diff)
downloadbdwgc-662e5b53bcfcd00353655b2ebfe5bbca53d65d30.tar.gz
Remove code commented out by 'ifdef UNDEFINED'
* finalize.c [UNDEFINED] (GC_invoke_finalizers): Remove GC_free(curr_fo) call; update comment. * include/private/gcconfig.h [UNDEFINED] (_etext, DATASTART): Remove. * typd_mlc.c [UNDEFINED] (GC_make_complex_array_descriptor): Likewise.
Diffstat (limited to 'typd_mlc.c')
-rw-r--r--typd_mlc.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/typd_mlc.c b/typd_mlc.c
index a5dc47a5..839c3144 100644
--- a/typd_mlc.c
+++ b/typd_mlc.c
@@ -327,23 +327,6 @@ GC_make_sequence_descriptor(complex_descriptor *first,
return((complex_descriptor *)result);
}
-#ifdef UNDEFINED
- complex_descriptor * GC_make_complex_array_descriptor(word nelements,
- complex_descriptor *descr)
- {
- struct ComplexArrayDescriptor * result =
- (struct ComplexArrayDescriptor *)
- GC_malloc(sizeof(struct ComplexArrayDescriptor));
-
- if (result != 0) {
- result -> ad_tag = ARRAY_TAG;
- result -> ad_nelements = nelements;
- result -> ad_element_descr = descr;
- }
- return((complex_descriptor *)result);
- }
-#endif
-
STATIC ptr_t * GC_eobjfreelist = NULL;
STATIC mse * GC_typed_mark_proc(word * addr, mse * mark_stack_ptr,