diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2001-01-10 07:51:11 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-01-10 07:51:11 +0000 |
commit | ee811cfdfaa9b3dee676e33fcf5853864255a04a (patch) | |
tree | 9722a0d53a90eb7c3efcda64249217ac59a4b20b /gcc/cp/cp-tree.h | |
parent | 8541c24be9cdf2943f93bea51a3227647978556c (diff) | |
download | gcc-ee811cfdfaa9b3dee676e33fcf5853864255a04a.zip gcc-ee811cfdfaa9b3dee676e33fcf5853864255a04a.tar.gz gcc-ee811cfdfaa9b3dee676e33fcf5853864255a04a.tar.bz2 |
c-lang.c (lang_hooks): Update.
* c-lang.c (lang_hooks): Update.
(lang_decode_option): Remove.
(lang_init_options): Rename c_init_options.
* toplev.c (main): Use lang_hooks for lang_init_options
and lang_decode_option.
* toplev.h (lang_hooks): Add 2 new hooks.
* tree.h: Remove lang_init_options and lang_decode_option.
* cp/cp-tree.h (lang_decode_option): Rename cxx_decode_option.
* cp/decl2.c: Similarly.
* cp/lex.c (lang_init_options): Rename cxx_init_options.
(lang_hooks): Update.
* f/com.c (f_init, f_finish): Rename ffe_init, ffe_finish
for consistency.
(lang_init_options): Rename ffe_init_options.
(lang_hooks): Update.
(lang_decode_option): Remove.
* java/lang.c (lang_init_options): Rename java_init_options.
(lang_decode_option): Rename java_decode_option.
(lang_hooks): Update.
* objc/objc-act.c (lang_init_options): Rename objc_init_options.
(lang_decode_option): Rename objc_decode_option.
(lang_hooks): Update.
From-SVN: r38856
Diffstat (limited to 'gcc/cp/cp-tree.h')
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index e2309e9..d0664b1 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3913,7 +3913,7 @@ extern tmpl_spec_kind current_tmpl_spec_kind PARAMS ((int)); /* in decl2.c */ extern void init_decl2 PARAMS ((void)); extern int check_java_method PARAMS ((tree)); -extern int lang_decode_option PARAMS ((int, char **)); +extern int cxx_decode_option PARAMS ((int, char **)); extern int grok_method_quals PARAMS ((tree, tree, tree)); extern void warn_if_unknown_interface PARAMS ((tree)); extern void grok_x_components PARAMS ((tree)); |