aboutsummaryrefslogtreecommitdiff
path: root/gcc/passes.c
diff options
context:
space:
mode:
authorEaswaran Raman <eraman@google.com>2012-06-15 17:35:11 +0000
committerEaswaran Raman <eraman@google.com>2012-06-15 17:35:11 +0000
commitfc355906040e3e393d1b8a88e06cdec69d3c1ab7 (patch)
treefe327b754c40b65dee9495e0db126288a075e96e /gcc/passes.c
parent703da96754823e72ce5023af327c020add90a9a4 (diff)
2012-06-15 Easwaran Raman <eraman@google.com>
* passes.c (init_optimization_passes): Remove pass_call_cdce from its current position and insert after pass_dce. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@188675 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/passes.c')
-rw-r--r--gcc/passes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/passes.c b/gcc/passes.c
index 3974231562a..5be7c4208fb 100644
--- a/gcc/passes.c
+++ b/gcc/passes.c
@@ -1374,7 +1374,6 @@ init_optimization_passes (void)
NEXT_PASS (pass_complete_unrolli);
NEXT_PASS (pass_ccp);
NEXT_PASS (pass_forwprop);
- NEXT_PASS (pass_call_cdce);
/* pass_build_alias is a dummy pass that ensures that we
execute TODO_rebuild_alias at this point. Re-building
alias information also rewrites no longer addressed
@@ -1387,6 +1386,7 @@ init_optimization_passes (void)
NEXT_PASS (pass_merge_phi);
NEXT_PASS (pass_vrp);
NEXT_PASS (pass_dce);
+ NEXT_PASS (pass_call_cdce);
NEXT_PASS (pass_cselim);
NEXT_PASS (pass_tree_ifcombine);
NEXT_PASS (pass_phiopt);