From 837bac8cb6e58e3665c736c338dfaf64330c1971 Mon Sep 17 00:00:00 2001 From: Ilya Verbin Date: Wed, 14 Jan 2015 15:15:21 +0000 Subject: cgraphunit.c (ipa_passes): Remove argument from ipa_write_summaries. gcc/ * cgraphunit.c (ipa_passes): Remove argument from ipa_write_summaries. * lto-cgraph.c (select_what_to_stream): Remove argument, use lto_stream_offload_p instead. * lto-streamer.h (select_what_to_stream): Remove argument. * passes.c (ipa_write_summaries): Likewise. * tree-pass.h (ipa_write_summaries): Likewise. gcc/lto/ * lto-partition.c (lto_promote_cross_file_statics): Remove argument from select_what_to_stream. From-SVN: r219605 --- gcc/cgraphunit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/cgraphunit.c') diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 149f447..1ef1b6c 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -2115,14 +2115,14 @@ ipa_passes (void) { section_name_prefix = OFFLOAD_SECTION_NAME_PREFIX; lto_stream_offload_p = true; - ipa_write_summaries (true); + ipa_write_summaries (); lto_stream_offload_p = false; } if (flag_lto) { section_name_prefix = LTO_SECTION_NAME_PREFIX; lto_stream_offload_p = false; - ipa_write_summaries (false); + ipa_write_summaries (); } } -- cgit v1.1