Commit 28a4a292 by Richard Biener

passes.def: Move 2nd VRP pass before phi-only-cprop.

2014-06-06  Richard Biener  <rguenther@suse.de>

	* passes.def: Move 2nd VRP pass before phi-only-cprop.

From-SVN: r211304
parent 5f23671d
2014-06-06 Richard Biener <rguenther@suse.de>
* passes.def: Move 2nd VRP pass before phi-only-cprop.
2014-06-06 Christian Bruel <christian.bruel@st.com>
PR tree-optimization/43934
* tree-ssa-loop-im.c (determine_max_movement): Add PHI def constant cost.
* tree-ssa-loop-im.c (determine_max_movement): Add PHI def constant
cost.
2014-06-06 Richard Sandiford <rdsandiford@googlemail.com>
......
......@@ -240,13 +240,13 @@ along with GCC; see the file COPYING3. If not see
NEXT_PASS (pass_reassoc);
NEXT_PASS (pass_strength_reduction);
NEXT_PASS (pass_dominator);
NEXT_PASS (pass_vrp);
/* The only const/copy propagation opportunities left after
DOM should be due to degenerate PHI nodes. So rather than
DOM and VRP should be due to degenerate PHI nodes. So rather than
run the full propagators, run a specialized pass which
only examines PHIs to discover const/copy propagation
opportunities. */
NEXT_PASS (pass_phi_only_cprop);
NEXT_PASS (pass_vrp);
NEXT_PASS (pass_cd_dce);
NEXT_PASS (pass_tracer);
NEXT_PASS (pass_dse);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment