summaryrefslogtreecommitdiff
path: root/gcc/passes.def
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2015-12-18 04:04:20 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2015-12-18 04:04:20 +0000
commitae31bfaa8e7837e62f5061d808f1d7c55cfe5ff1 (patch)
tree6282db60b21d19d9f046482c59840eb01cddf2e5 /gcc/passes.def
parentd9bd6fa2bac3d25990865b83c64acca44e3af210 (diff)
downloadgcc-ae31bfaa8e7837e62f5061d808f1d7c55cfe5ff1.tar.gz
[PATCH] Move split-path pass next to the tracer pass
* passes.def: Put the split-paths pass immediately before the tracer pass. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@231800 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 2ba8490b057..59114a9f486 100644
--- a/gcc/passes.def
+++ b/gcc/passes.def
@@ -302,10 +302,10 @@ along with GCC; see the file COPYING3. If not see
POP_INSERT_PASSES ()
NEXT_PASS (pass_simduid_cleanup);
NEXT_PASS (pass_lower_vector_ssa);
- NEXT_PASS (pass_split_paths);
NEXT_PASS (pass_cse_reciprocals);
NEXT_PASS (pass_reassoc, false /* insert_powi_p */);
NEXT_PASS (pass_strength_reduction);
+ NEXT_PASS (pass_split_paths);
NEXT_PASS (pass_tracer);
NEXT_PASS (pass_dominator, false /* may_peel_loop_headers_p */);
NEXT_PASS (pass_strlen);