summaryrefslogtreecommitdiff
path: root/gcc/passes.def
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2016-05-18 07:41:09 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2016-05-18 07:41:09 +0000
commit56137da8722d13c23b3cb663ca98697ac386b8f2 (patch)
tree4df34f51a0f1f69f5d81d945c8cce31532462d3a /gcc/passes.def
parent6a353dda02d22cd9dcef537b7371ad30b3e85a38 (diff)
downloadgcc-56137da8722d13c23b3cb663ca98697ac386b8f2.tar.gz
2016-05-18 Richard Biener <rguenther@suse.de>
* passes.def: Put late dse and cd_dce in canonical order. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@236358 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/passes.def')
-rw-r--r--gcc/passes.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/passes.def b/gcc/passes.def
index 0e55829fe62..21427d7b6e7 100644
--- a/gcc/passes.def
+++ b/gcc/passes.def
@@ -315,8 +315,8 @@ along with GCC; see the file COPYING3. If not see
only examines PHIs to discover const/copy propagation
opportunities. */
NEXT_PASS (pass_phi_only_cprop);
- NEXT_PASS (pass_cd_dce);
NEXT_PASS (pass_dse);
+ NEXT_PASS (pass_cd_dce);
NEXT_PASS (pass_forwprop);
NEXT_PASS (pass_phiopt);
NEXT_PASS (pass_fold_builtins);