* passes.c (init_optimization_passes): Move OMP expansion into lowering.

From-SVN: r199419
This commit is contained in:
Jan Hubicka 2013-05-29 19:59:19 +02:00 committed by Jan Hubicka
parent 8190b609c2
commit 182802adcc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-05-29 Jan Hubicka <jh@suse.cz>
* passes.c (init_optimization_passes): Move OMP expansion into lowering.
2013-05-29 Easwaran Raman <eraman@google.com>
PR tree-optimization/57442

View File

@ -1300,6 +1300,7 @@ init_optimization_passes (void)
NEXT_PASS (pass_lower_eh);
NEXT_PASS (pass_build_cfg);
NEXT_PASS (pass_warn_function_return);
NEXT_PASS (pass_expand_omp);
NEXT_PASS (pass_build_cgraph_edges);
*p = NULL;
@ -1312,7 +1313,6 @@ init_optimization_passes (void)
struct opt_pass **p = &pass_early_local_passes.pass.sub;
NEXT_PASS (pass_fixup_cfg);
NEXT_PASS (pass_init_datastructures);
NEXT_PASS (pass_expand_omp);
NEXT_PASS (pass_build_ssa);
NEXT_PASS (pass_early_warn_uninitialized);