diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-06-11 22:21:10 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-06-11 22:21:10 +0000 |
commit | 7fb26bb00173af1f41d3df4b5a7a43be9e3f12db (patch) | |
tree | 2af8d6bf007345fd5e6e0ba2072ebff79f20b89c /gcc/hooks.h | |
parent | 24386c5ec6a6f91d94bb14a65f5ec8a5c84235bc (diff) | |
download | gcc-7fb26bb00173af1f41d3df4b5a7a43be9e3f12db.zip gcc-7fb26bb00173af1f41d3df4b5a7a43be9e3f12db.tar.gz gcc-7fb26bb00173af1f41d3df4b5a7a43be9e3f12db.tar.bz2 |
hooks.c (hook_int_size_t_constcharptr_int_0): New.
* hooks.c (hook_int_size_t_constcharptr_int_0): New.
* hooks.h (hook_int_size_t_constcharptr_int_0): New.
* langhooks-def.h (lhd_decode_option, LANG_HOOKS_DECODE_OPTION): Die.
(LANG_HOOKS_HANDLE_OPTION, LANG_HOOKS_INITIALIZER): Update.
* langhooks.c (lhd_decode_option): Remove.
* langhooks.h (struct lang_hooks): Remove decode_option.
* opts.c (handle_option): No longer use decode_option.
java:
* Make-lang.in: Handle mostlyclean.
treelang:
* Make-lang.in: Update for option handling.
* lang.opt: New.
* tree1.c: Include opts.h and t-options.h.
(treelang_decode_option): Remove.
(treelang_handle_option): New.
* treetree.c (LANG_HOOKS_DECODE_OPTION): Remove.
(LANG_HOOKS_HANDLE_OPTION): Override.
* treetree.h (treelang_decode_option): Remove.
(treelang_handle_option): New.
From-SVN: r67799
Diffstat (limited to 'gcc/hooks.h')
-rw-r--r-- | gcc/hooks.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/hooks.h b/gcc/hooks.h index 407440f..15b742d 100644 --- a/gcc/hooks.h +++ b/gcc/hooks.h @@ -40,6 +40,7 @@ void hook_void_tree_treeptr PARAMS ((tree, tree *)); int hook_int_tree_tree_1 PARAMS ((tree, tree)); int hook_int_rtx_0 PARAMS ((rtx)); int hook_int_void_0 (void); +int hook_int_size_t_constcharptr_int_0 (size_t, const char *, int); bool default_can_output_mi_thunk_no_vcall PARAMS ((tree, HOST_WIDE_INT, HOST_WIDE_INT, tree)); |