]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* passes.c (init_optimization_passes): Move OMP expansion into lowering.
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 29 May 2013 17:59:19 +0000 (17:59 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 29 May 2013 17:59:19 +0000 (17:59 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@199419 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/passes.c

index dda218445715002b637d78b6a734ec0ba454d583..e93f2099d40a313d27336bf33ae75c6ebfa37fdd 100644 (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
index 02f2022cea5200f8535c95921cba7de605733606..eccf0b5794db44c86912510c2e953d0edce3a69f 100644 (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);