diff options
author | Neil Booth <neil@gcc.gnu.org> | 2001-01-09 10:54:01 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-01-09 10:54:01 +0000 |
commit | 13c61421ff315b27bb41e6ac8ccacdebab9d8247 (patch) | |
tree | 5175214bd3273e1990f7d1c7e0d43f3853a1fc53 /gcc/tree.h | |
parent | fb83deef1a1438c21b65535483a4726f31862b20 (diff) | |
download | gcc-13c61421ff315b27bb41e6ac8ccacdebab9d8247.zip gcc-13c61421ff315b27bb41e6ac8ccacdebab9d8247.tar.gz gcc-13c61421ff315b27bb41e6ac8ccacdebab9d8247.tar.bz2 |
c-lang.c (lang_hooks): Update.
* c-lang.c (lang_hooks): Update.
(lang_init): Rename c_init.
(lang_finish): Remove.
* toplev.c (compile_file): Use lang_hooks for lang_init ()
and lang_finish ().
* toplev.h (lang_hooks): Add init () and finish ().
* tree.h (lang_init, lang_finish): Remove.
* cp/tree.h (lang_init, lang_finish): Remove.
* cp/decl2.c (cxx_post_options, lang_hooks): Move to cp/lex.c.
* cp/lex.c (cxx_init, cxx_finish, cxx_post_options,
lang_hooks): New.
(lang_init, lang_finish): Remove.
* f/com.c (lang_init, lang_finish): Rename f_init, f_finish.
(lang_hooks): Update.
* java/lang.c (lang_init): Rename java_init.
(lang_finish): Remove.
(lang_hooks): Update.
* objc/objc-act.c (lang_init): Rename objc_init.
(lang_finish): Remove.
(lang_hoooks): Update.
From-SVN: r38828
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -2571,11 +2571,6 @@ extern void init_lex PARAMS ((void)); /* Function of no arguments for initializing the symbol table. */ extern void init_decl_processing PARAMS ((void)); -/* Functions called with no arguments at the beginning and end or processing - the input source file. */ -extern void lang_init PARAMS ((void)); -extern void lang_finish PARAMS ((void)); - /* Function to identify which front-end produced the output file. */ extern const char *lang_identify PARAMS ((void)); |