diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-26 07:16:01 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-26 07:16:01 +0000 |
commit | 6d26a3eeca0bcf0899a23fda48d00147d09b5d36 (patch) | |
tree | 8cda6f7ecc6d1edaf267ea2f85a413a2375c87ba /gcc/ggc.h | |
parent | 8ca5c49ac8be71cb3d3d4c27a80ccdbdd9aa1650 (diff) | |
download | gcc-6d26a3eeca0bcf0899a23fda48d00147d09b5d36.tar.gz |
* Makefile.in (ggc-common.o): Update.
* c-decl.c (lang_mark_tree): Rename c_mark_tree.
* c-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
* c-tree.h (c_mark_tree): New.
* ggc-common.c: Include langhooks.h.
(gcc_mark_trees): Use new langhook.
* ggc-callbacks.c: Delete file.
* ggc.h (lang_mark_tree): Remove.
* langhooks-def.h (LANG_HOOKS_MARK_TREE): New.
(LANG_HOOKS_INITIALIZER): Update.
* langhooks.h (struct lang_hooks): New hook.
ada:
* misc.c (LANG_HOOKS_MARK_TREE): Redefine.
(lang_mark_tree): Make static, rename.
cp:
* cp-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
* cp-tree.h (cxx_mark_tree): New.
* decl.c (lang_mark_tree): Rename cxx_mark_tree.
f:
* com.c (LANG_HOOKS_MARK_TREE): Redefine.
(lang_mark_tree): Rename ffe_mark_tree, make static.
java:
* decl.c (lang_mark_tree): Rename java_mark_tree.
* java-tree.h (java_mark_tree): New.
* java-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
objc:
* objc-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51369 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ggc.h')
-rw-r--r-- | gcc/ggc.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/ggc.h b/gcc/ggc.h index ae021fc203a..8d65b12a2a5 100644 --- a/gcc/ggc.h +++ b/gcc/ggc.h @@ -179,10 +179,6 @@ extern int ggc_marked_p PARAMS ((const void *)); /* Callbacks to the languages. */ -/* This is the language's opportunity to mark nodes held through - the lang_specific hooks in the tree. */ -extern void lang_mark_tree PARAMS ((union tree_node *)); - /* The FALSE_LABEL_STACK, declared in except.h, has language-dependent semantics. If a front-end needs to mark the false label stack, it should set this pointer to a non-NULL value. Otherwise, no marking |