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/passes.def | |
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/passes.def')
-rw-r--r-- | gcc/passes.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/passes.def b/gcc/passes.def index 3647e90..533157d 100644 --- a/gcc/passes.def +++ b/gcc/passes.def @@ -167,6 +167,7 @@ along with GCC; see the file COPYING3. If not see passes are executed after partitioning and thus see just parts of the compiled unit. */ INSERT_PASSES_AFTER (all_late_ipa_passes) + NEXT_PASS (pass_materialize_all_clones); NEXT_PASS (pass_ipa_pta); NEXT_PASS (pass_dispatcher_calls); NEXT_PASS (pass_omp_simd_clone); |