Commit 182802ad by Jan Hubicka Committed by Jan Hubicka

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

From-SVN: r199419
parent 8190b609
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> 2013-05-29 Easwaran Raman <eraman@google.com>
PR tree-optimization/57442 PR tree-optimization/57442
......
...@@ -1300,6 +1300,7 @@ init_optimization_passes (void) ...@@ -1300,6 +1300,7 @@ init_optimization_passes (void)
NEXT_PASS (pass_lower_eh); NEXT_PASS (pass_lower_eh);
NEXT_PASS (pass_build_cfg); NEXT_PASS (pass_build_cfg);
NEXT_PASS (pass_warn_function_return); NEXT_PASS (pass_warn_function_return);
NEXT_PASS (pass_expand_omp);
NEXT_PASS (pass_build_cgraph_edges); NEXT_PASS (pass_build_cgraph_edges);
*p = NULL; *p = NULL;
...@@ -1312,7 +1313,6 @@ init_optimization_passes (void) ...@@ -1312,7 +1313,6 @@ init_optimization_passes (void)
struct opt_pass **p = &pass_early_local_passes.pass.sub; struct opt_pass **p = &pass_early_local_passes.pass.sub;
NEXT_PASS (pass_fixup_cfg); NEXT_PASS (pass_fixup_cfg);
NEXT_PASS (pass_init_datastructures); NEXT_PASS (pass_init_datastructures);
NEXT_PASS (pass_expand_omp);
NEXT_PASS (pass_build_ssa); NEXT_PASS (pass_build_ssa);
NEXT_PASS (pass_early_warn_uninitialized); NEXT_PASS (pass_early_warn_uninitialized);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment