diff options
author | Richard Biener <rguenther@suse.de> | 2016-08-18 10:41:53 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2016-08-18 10:41:53 +0000 |
commit | f02510201aff3a572f7c67fcce3ee90c127ecd76 (patch) | |
tree | 66731264e5aac24db0964fd44ab89db11412cc57 /gcc/cgraphunit.c | |
parent | 9c62c8735891bd29be0bc379b51b295f2838019a (diff) | |
download | gcc-f02510201aff3a572f7c67fcce3ee90c127ecd76.zip gcc-f02510201aff3a572f7c67fcce3ee90c127ecd76.tar.gz gcc-f02510201aff3a572f7c67fcce3ee90c127ecd76.tar.bz2 |
tree-pass.h (make_pass_materialize_all_clones): Declare.
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.
From-SVN: r239567
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 d8f7903..6a1d126 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); |