aboutsummaryrefslogtreecommitdiff
path: root/gcc/passes.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2013-05-29 19:59:19 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2013-05-29 17:59:19 +0000
commit182802adcc315bbbc5a4e468d9a6817be6be5c08 (patch)
treecb18b867981eec4da696189d02375b0166ba296f /gcc/passes.c
parent8190b609c2cdfd1e624149c1e6751e43407e13da (diff)
downloadgcc-182802adcc315bbbc5a4e468d9a6817be6be5c08.zip
gcc-182802adcc315bbbc5a4e468d9a6817be6be5c08.tar.gz
gcc-182802adcc315bbbc5a4e468d9a6817be6be5c08.tar.bz2
* passes.c (init_optimization_passes): Move OMP expansion into lowering.
From-SVN: r199419
Diffstat (limited to 'gcc/passes.c')
-rw-r--r--gcc/passes.c2
1 files changed, 1 insertions, 1 deletions
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);