diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-09 21:41:38 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-09 21:41:38 +0000 |
commit | ac97e5692f31853a870eac5e574394927009f719 (patch) | |
tree | 15ea4dfce4fc305fb556decff352c130246460ee /gcc/ggc-callbacks.c | |
parent | a6881cf34e63f36838e5ebe2ca70f9f1d23dbff0 (diff) | |
download | gcc-ac97e5692f31853a870eac5e574394927009f719.tar.gz |
* ggc.h (lang_cleanup_tree): Remove.
* gcc-simple.c (ggc_free_tree): Don't call lang_cleanup_tree.
* ggc-callbacks.c (lang_cleanup_tree): Remove.
* c-decl.c (finish_struct): Use ggc_alloc to allocate
TYPE_LANG_SPECIFIC when garbage collecting.
(lang_cleanup_tree): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29242 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ggc-callbacks.c')
-rw-r--r-- | gcc/ggc-callbacks.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/ggc-callbacks.c b/gcc/ggc-callbacks.c index 797c3de47ca..3992368cff5 100644 --- a/gcc/ggc-callbacks.c +++ b/gcc/ggc-callbacks.c @@ -36,15 +36,6 @@ lang_mark_tree (t) } void -lang_cleanup_tree (t) - union tree_node *t ATTRIBUTE_UNUSED; -{ - /* If this function is called, we are doing GC. But, this file is - only included in compilers for languages that don't support GC. */ - abort (); -} - -void lang_mark_false_label_stack (l) struct label_node *l ATTRIBUTE_UNUSED; { |