aboutsummaryrefslogtreecommitdiff
path: root/gcc/langhooks.h
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@redhat.com>2002-06-04 07:11:05 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2002-06-04 07:11:05 +0000
commite2500fedef1a1c5b9e818fd1e2c281adff80df4a (patch)
tree720630adca0f6b357e05c4feb8cbe33d556925ce /gcc/langhooks.h
parentc2ae66169b8326bbf9b1dfa63083d2560fea7ddf (diff)
downloadgcc-e2500fedef1a1c5b9e818fd1e2c281adff80df4a.zip
gcc-e2500fedef1a1c5b9e818fd1e2c281adff80df4a.tar.gz
gcc-e2500fedef1a1c5b9e818fd1e2c281adff80df4a.tar.bz2
Merge from pch-branch up to tag pch-commit-20020603.
From-SVN: r54232
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r--gcc/langhooks.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h
index ffa3517..71ae251 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.