diff options
author | Ilya Verbin <ilya.verbin@intel.com> | 2015-01-14 15:15:21 +0000 |
---|---|---|
committer | Ilya Verbin <iverbin@gcc.gnu.org> | 2015-01-14 15:15:21 +0000 |
commit | 837bac8cb6e58e3665c736c338dfaf64330c1971 (patch) | |
tree | 5582883ab2dcde11cf2737d6902cf9c574559f70 /gcc/cgraphunit.c | |
parent | 2f6c116d289dd816f3d2594e6ce7bcf78684f0bc (diff) | |
download | gcc-837bac8cb6e58e3665c736c338dfaf64330c1971.zip gcc-837bac8cb6e58e3665c736c338dfaf64330c1971.tar.gz gcc-837bac8cb6e58e3665c736c338dfaf64330c1971.tar.bz2 |
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
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 (); } } |