diff options
author | iverbin <iverbin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-01-14 15:15:21 +0000 |
---|---|---|
committer | iverbin <iverbin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-01-14 15:15:21 +0000 |
commit | 9d65fe51dc4c9e12c7ce6456201d06f79e316d78 (patch) | |
tree | 5582883ab2dcde11cf2737d6902cf9c574559f70 /gcc/lto/lto-partition.c | |
parent | d4cbe45aae70e38c12f3cd7430427c98289d7882 (diff) | |
download | gcc-9d65fe51dc4c9e12c7ce6456201d06f79e316d78.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@219605 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto/lto-partition.c')
-rw-r--r-- | gcc/lto/lto-partition.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/lto/lto-partition.c b/gcc/lto/lto-partition.c index 38809d28549..c1179cb2eff 100644 --- a/gcc/lto/lto-partition.c +++ b/gcc/lto/lto-partition.c @@ -973,7 +973,8 @@ lto_promote_cross_file_statics (void) gcc_assert (flag_wpa); - select_what_to_stream (false); + lto_stream_offload_p = false; + select_what_to_stream (); /* First compute boundaries. */ n_sets = ltrans_partitions.length (); |