diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-11 22:21:10 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-11 22:21:10 +0000 |
commit | e938cdf5e5499e3065f0e8ec50694d9ffdb7e854 (patch) | |
tree | 2af8d6bf007345fd5e6e0ba2072ebff79f20b89c /gcc/hooks.c | |
parent | 266d04c543304bff5b2a56d84706e294ca6142f7 (diff) | |
download | gcc-e938cdf5e5499e3065f0e8ec50694d9ffdb7e854.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67799 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index a80ded7fc41..438af66f921 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -110,6 +110,14 @@ hook_int_void_0 (void) return 0; } +int +hook_int_size_t_constcharptr_int_0 (size_t a ATTRIBUTE_UNUSED, + const char *b ATTRIBUTE_UNUSED, + int c ATTRIBUTE_UNUSED) +{ + return 0; +} + void hook_void_tree (a) tree a ATTRIBUTE_UNUSED; |