diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-04 07:11:05 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-04 07:11:05 +0000 |
commit | 1f3233d13f58417984cb2239d328b65e8d172744 (patch) | |
tree | 720630adca0f6b357e05c4feb8cbe33d556925ce /gcc/langhooks.h | |
parent | 0dc11899d8781bca1da5f4421327d61890424808 (diff) | |
download | gcc-1f3233d13f58417984cb2239d328b65e8d172744.tar.gz |
Merge from pch-branch up to tag pch-commit-20020603.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54232 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r-- | gcc/langhooks.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h index ffa35179406..71ae251c4ab 100644 --- a/gcc/langhooks.h +++ b/gcc/langhooks.h @@ -65,16 +65,13 @@ struct lang_hooks_for_functions void (*init) PARAMS ((struct function *)); /* Called when leaving a function. */ - void (*free) PARAMS ((struct function *)); + void (*final) PARAMS ((struct function *)); /* Called when entering a nested function. */ void (*enter_nested) PARAMS ((struct function *)); /* Called when leaving a nested function. */ void (*leave_nested) PARAMS ((struct function *)); - - /* Lang-specific function data marking for GC. */ - void (*mark) PARAMS ((struct function *)); }; /* The following hooks are used by tree-dump.c. */ @@ -292,9 +289,6 @@ struct lang_hooks for the passed TARGET_EXPR. Return NULL if there is none. */ tree (*maybe_build_cleanup) PARAMS ((tree)); - /* Mark nodes held through the lang_specific hooks in the tree. */ - void (*mark_tree) PARAMS ((tree)); - /* Set the DECL_ASSEMBLER_NAME for a node. If it is the sort of thing that the assembler should talk about, set DECL_ASSEMBLER_NAME to an appropriate IDENTIFIER_NODE. |