diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-08-18 10:41:53 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-08-18 10:41:53 +0000 |
commit | b35a87b17607d81ae83ee6a7e0a5d91044b7b00a (patch) | |
tree | 66731264e5aac24db0964fd44ab89db11412cc57 /gcc/cgraphunit.c | |
parent | fa5f704b905599bb9e220c03432854c4de664408 (diff) | |
download | gcc-b35a87b17607d81ae83ee6a7e0a5d91044b7b00a.tar.gz |
2016-08-18 Richard Biener <rguenther@suse.de>
* tree-pass.h (make_pass_materialize_all_clones): Declare.
* ipa.c (pass_data_materialize_all_clones, pass_materialize_all_clones,
make_pass_materialize_all_clones): New simple IPA pass encapsulating
clone materialization.
* passes.def (all_late_ipa_passes): Start with
pass_materialize_all_clones.
* cgraphunit.c (symbol_table::compile): Remove call to
materialize_all_clones.
* tree-into-ssa.c: Include statistics.h.
(update_ssa): Count number of times we do incremental/rewrite
SSA update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@239567 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index d8f79036b40..6a1d1267202 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -2435,7 +2435,6 @@ symbol_table::compile (void) fprintf (stderr, "Assembling functions:\n"); symtab_node::checking_verify_symtab_nodes (); - materialize_all_clones (); bitmap_obstack_initialize (NULL); execute_ipa_pass_list (g->get_passes ()->all_late_ipa_passes); bitmap_obstack_release (NULL); |