[PATCH] Move split-path pass next to the tracer pass

* passes.def: Put the split-paths pass immediately before the
	tracer pass.

From-SVN: r231800
This commit is contained in:
Jeff Law 2015-12-17 21:04:20 -07:00 committed by Jeff Law
parent 458cd4c394
commit 45fbe8e9e2
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2015-12-17 Jeff Law <law@redhat.com> 2015-12-17 Jeff Law <law@redhat.com>
* passes.def: Put the split-paths pass immediately before the
tracer pass.
* doc/invoke.texi (-O2 options): Remove -fsplit-paths. * doc/invoke.texi (-O2 options): Remove -fsplit-paths.
(-O3 options): Add -fsplit-paths. (-O3 options): Add -fsplit-paths.
* gimple-ssa-split-paths.c: Include predict.h * gimple-ssa-split-paths.c: Include predict.h

View file

@ -302,10 +302,10 @@ along with GCC; see the file COPYING3. If not see
POP_INSERT_PASSES () POP_INSERT_PASSES ()
NEXT_PASS (pass_simduid_cleanup); NEXT_PASS (pass_simduid_cleanup);
NEXT_PASS (pass_lower_vector_ssa); NEXT_PASS (pass_lower_vector_ssa);
NEXT_PASS (pass_split_paths);
NEXT_PASS (pass_cse_reciprocals); NEXT_PASS (pass_cse_reciprocals);
NEXT_PASS (pass_reassoc, false /* insert_powi_p */); NEXT_PASS (pass_reassoc, false /* insert_powi_p */);
NEXT_PASS (pass_strength_reduction); NEXT_PASS (pass_strength_reduction);
NEXT_PASS (pass_split_paths);
NEXT_PASS (pass_tracer); NEXT_PASS (pass_tracer);
NEXT_PASS (pass_dominator, false /* may_peel_loop_headers_p */); NEXT_PASS (pass_dominator, false /* may_peel_loop_headers_p */);
NEXT_PASS (pass_strlen); NEXT_PASS (pass_strlen);