diff options
author | Richard Biener <rguenther@suse.de> | 2013-05-16 11:19:40 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2013-05-16 11:19:40 +0000 |
commit | aa9d5bcf37ac78d4a2331e83aea9ae6a0e8be865 (patch) | |
tree | aa3b19d4a23591c43b4fa2e3c4ce43fb70c49451 /gcc | |
parent | 5a0f4dd39504905e6c72bd59b6bcecd264fbcb9c (diff) | |
download | gcc-aa9d5bcf37ac78d4a2331e83aea9ae6a0e8be865.zip gcc-aa9d5bcf37ac78d4a2331e83aea9ae6a0e8be865.tar.gz gcc-aa9d5bcf37ac78d4a2331e83aea9ae6a0e8be865.tar.bz2 |
passes.c (init_optimization_passes): Move pass_parallelize_loops earlier...
2013-05-16 Richard Biener <rguenther@suse.de>
* passes.c (init_optimization_passes): Move pass_parallelize_loops
earlier, after GRAPHITE transforms and IV canonicalization.
From-SVN: r198968
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/passes.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4f36ac9..a8283ae 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-05-16 Richard Biener <rguenther@suse.de> + + * passes.c (init_optimization_passes): Move pass_parallelize_loops + earlier, after GRAPHITE transforms and IV canonicalization. + 2013-05-16 Jakub Jelinek <jakub@redhat.com> * omp-low.c (extract_omp_for_data): For collapsed loops, diff --git a/gcc/passes.c b/gcc/passes.c index fd67ee6..0f1d214 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -1475,6 +1475,7 @@ init_optimization_passes (void) NEXT_PASS (pass_dce_loop); } NEXT_PASS (pass_iv_canon); + NEXT_PASS (pass_parallelize_loops); NEXT_PASS (pass_if_conversion); NEXT_PASS (pass_vectorize); { @@ -1484,7 +1485,6 @@ init_optimization_passes (void) NEXT_PASS (pass_predcom); NEXT_PASS (pass_complete_unroll); NEXT_PASS (pass_slp_vectorize); - NEXT_PASS (pass_parallelize_loops); NEXT_PASS (pass_loop_prefetch); NEXT_PASS (pass_iv_optimize); NEXT_PASS (pass_lim); |