aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Biener <rguenth@gcc.gnu.org>2014-06-06 07:29:45 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2014-06-06 07:29:45 +0000
commit28a4a292fc1717544e68ed2f6107b3f0cbe10aed (patch)
tree4d3620f21f82f8365aae8d088b40087f87f6c903 /gcc
parent5f23671d3fffb58b8f1c0bfb292e3b1c66fc0f9d (diff)
downloadgcc-28a4a292fc1717544e68ed2f6107b3f0cbe10aed.zip
gcc-28a4a292fc1717544e68ed2f6107b3f0cbe10aed.tar.gz
gcc-28a4a292fc1717544e68ed2f6107b3f0cbe10aed.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/passes.def4
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e807a61..e71d68f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,7 +1,12 @@
+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>
diff --git a/gcc/passes.def b/gcc/passes.def
index 2f889e8..f9e0b2a 100644
--- a/gcc/passes.def
+++ b/gcc/passes.def
@@ -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);