diff options
author | Jan Hubicka <jh@suse.cz> | 2013-05-29 19:59:19 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2013-05-29 17:59:19 +0000 |
commit | 182802adcc315bbbc5a4e468d9a6817be6be5c08 (patch) | |
tree | cb18b867981eec4da696189d02375b0166ba296f | |
parent | 8190b609c2cdfd1e624149c1e6751e43407e13da (diff) | |
download | gcc-182802adcc315bbbc5a4e468d9a6817be6be5c08.zip gcc-182802adcc315bbbc5a4e468d9a6817be6be5c08.tar.gz gcc-182802adcc315bbbc5a4e468d9a6817be6be5c08.tar.bz2 |
* passes.c (init_optimization_passes): Move OMP expansion into lowering.
From-SVN: r199419
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/passes.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dda2184..e93f209 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/passes.c b/gcc/passes.c index 02f2022..eccf0b5 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); |