diff options
author | Richard Guenther <rguenther@suse.de> | 2011-11-03 14:46:26 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2011-11-03 14:46:26 +0000 |
commit | 52a35ef729f3eae64eb9ba8213fd840e4c71df84 (patch) | |
tree | 9b93ef15724edc35794595b3bb53fc4cb6c6ae89 /gcc/lto-streamer.h | |
parent | fa66fc02ec785e63a40ab808b7e8bf47ceb7770b (diff) | |
download | gcc-52a35ef729f3eae64eb9ba8213fd840e4c71df84.tar.gz |
re PR lto/44965 (lto option code breaks file format with each added option)
2011-11-03 Richard Guenther <rguenther@suse.de>
PR lto/44965
* lto-opts.c: Re-implement.
* lto-streamer.h (lto_register_user_option): Remove.
(lto_read_file_options): Likewise.
(lto_reissue_options): Likewise.
(lto_clear_user_options): Likewise.
(lto_clear_file_options): Likewise.
* opts-global.c (post_handling_callback): Remove.
(set_default_handlers): Do not set post_handling_callback.
(decode_options): Remove LTO specific code.
* lto-wrapper.c (merge_and_complain): New function.
(run_gcc): Read all input file options and
prepend a merged set before the linker driver options.
* gcc.c (driver_post_handling_callback): Remove.
(set_option_handlers): Do not set post_handling_callback.
* opts-common.c (handle_option): Do not call post_handling_callback.
* opts.h (struct cl_option_handlers): Remove post_handling_callback.
lto/
* lto-lang.c (lto_post_options): Do not read file options.
* lto.c (lto_read_all_file_options): Remove.
(lto_init): Call lto_set_in_hooks here.
From-SVN: r180827
Diffstat (limited to 'gcc/lto-streamer.h')
-rw-r--r-- | gcc/lto-streamer.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h index f3c93682633..58d487485ec 100644 --- a/gcc/lto-streamer.h +++ b/gcc/lto-streamer.h @@ -882,12 +882,7 @@ extern GTY(()) VEC(tree,gc) *lto_global_var_decls; /* In lto-opts.c. */ -extern void lto_register_user_option (size_t, const char *, int, unsigned int); -extern void lto_read_file_options (struct lto_file_decl_data *); extern void lto_write_options (void); -extern void lto_reissue_options (void); -void lto_clear_user_options (void); -void lto_clear_file_options (void); /* In lto-wpa-fixup.c */ |