mirror of git://gcc.gnu.org/git/gcc.git
* passes.def (pass_iv_canon): Move before pass_loop_distribution.
From-SVN: r248965
This commit is contained in:
parent
04939ee6fd
commit
09a939a0d5
|
|
@ -1,3 +1,7 @@
|
||||||
|
2017-06-07 Bin Cheng <bin.cheng@arm.com>
|
||||||
|
|
||||||
|
* passes.def (pass_iv_canon): Move before pass_loop_distribution.
|
||||||
|
|
||||||
2017-06-07 Bin Cheng <bin.cheng@arm.com>
|
2017-06-07 Bin Cheng <bin.cheng@arm.com>
|
||||||
|
|
||||||
* graphds.c (add_edge): Intitialize edge's attached data.
|
* graphds.c (add_edge): Intitialize edge's attached data.
|
||||||
|
|
|
||||||
|
|
@ -277,6 +277,7 @@ along with GCC; see the file COPYING3. If not see
|
||||||
empty loops. Remove them now. */
|
empty loops. Remove them now. */
|
||||||
NEXT_PASS (pass_cd_dce);
|
NEXT_PASS (pass_cd_dce);
|
||||||
NEXT_PASS (pass_record_bounds);
|
NEXT_PASS (pass_record_bounds);
|
||||||
|
NEXT_PASS (pass_iv_canon);
|
||||||
NEXT_PASS (pass_loop_distribution);
|
NEXT_PASS (pass_loop_distribution);
|
||||||
NEXT_PASS (pass_copy_prop);
|
NEXT_PASS (pass_copy_prop);
|
||||||
NEXT_PASS (pass_graphite);
|
NEXT_PASS (pass_graphite);
|
||||||
|
|
@ -286,7 +287,6 @@ along with GCC; see the file COPYING3. If not see
|
||||||
NEXT_PASS (pass_copy_prop);
|
NEXT_PASS (pass_copy_prop);
|
||||||
NEXT_PASS (pass_dce);
|
NEXT_PASS (pass_dce);
|
||||||
POP_INSERT_PASSES ()
|
POP_INSERT_PASSES ()
|
||||||
NEXT_PASS (pass_iv_canon);
|
|
||||||
NEXT_PASS (pass_parallelize_loops, false /* oacc_kernels_p */);
|
NEXT_PASS (pass_parallelize_loops, false /* oacc_kernels_p */);
|
||||||
NEXT_PASS (pass_expand_omp_ssa);
|
NEXT_PASS (pass_expand_omp_ssa);
|
||||||
NEXT_PASS (pass_ch_vect);
|
NEXT_PASS (pass_ch_vect);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue