From: hubicka Date: Wed, 29 May 2013 17:59:19 +0000 (+0000) Subject: * passes.c (init_optimization_passes): Move OMP expansion into lowering. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=993fd1ebdd79ee184719075e609b7e2848042fce;p=thirdparty%2Fgcc.git * passes.c (init_optimization_passes): Move OMP expansion into lowering. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@199419 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dda218445715..e93f2099d40a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-05-29 Jan Hubicka + + * passes.c (init_optimization_passes): Move OMP expansion into lowering. + 2013-05-29 Easwaran Raman PR tree-optimization/57442 diff --git a/gcc/passes.c b/gcc/passes.c index 02f2022cea52..eccf0b5794db 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -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);