re PR middle-end/66633 (ICE on valid "verify_gimple failed" with OpenMP)
authorEric Botcazou <ebotcazou@adacore.com>
Wed, 1 Jul 2015 08:21:40 +0000 (08:21 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Wed, 1 Jul 2015 08:21:40 +0000 (08:21 +0000)
PR middle-end/66633
* tree-nested.c (convert_nonlocal_omp_clauses): Initialize need_chain
to true if the function is nested and if not optimizing.
(convert_local_omp_clauses): Initialize need_frame to true if the
function contains nested functions and if not optimizing.

From-SVN: r225227

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/gomp/pr66633.f90 [new file with mode: 0644]
gcc/tree-nested.c

index 3f0ba84fc1b52060f1b8816c97601cb31bfd27ff..abbdf4641611d4a6837545dc3866063f86d2ce5c 100644 (file)
@@ -1,3 +1,11 @@
+2015-07-01  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR middle-end/66633
+       * tree-nested.c (convert_nonlocal_omp_clauses): Initialize need_chain
+       to true if the function is nested and if not optimizing.
+       (convert_local_omp_clauses): Initialize need_frame to true if the
+       function contains nested functions and if not optimizing.
+
 2015-07-01  Richard Biener  <rguenther@suse.de>
 
        * fold-const.c (fold_binary_loc): Move ~X ^ X -> -1 and
index aca88862aa9d0b1485c2f1ae665ba86cd7cf539c..8d53a61fc1e2de49ce96497fc9ec364379437638 100644 (file)
@@ -1,3 +1,7 @@
+2015-07-01  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gfortran.dg/gomp/pr66633.f90: New test.
+
 2015-07-01  Patrick Palka  <ppalka@gcc.gnu.org>
 
        PR c++/66686
diff --git a/gcc/testsuite/gfortran.dg/gomp/pr66633.f90 b/gcc/testsuite/gfortran.dg/gomp/pr66633.f90
new file mode 100644 (file)
index 0000000..60e47b3
--- /dev/null
@@ -0,0 +1,17 @@
+! PR middle-end/66633
+! Testcase by Andrew Benson <abensonca@gmail.com>
+
+! { dg-do compile }
+! { dg-options "-O0 -fopenmp" }
+
+module spls
+contains
+  function spl()
+    !$omp parallel
+    write (0,*) igrt(fli)
+    !$omp end parallel
+  contains
+    double precision function fli()
+    end function fli
+  end function spl
+end module spls
index f391c652f6ffddfbdf0b0caa35bc66ecfb2d87b0..6b9d753ee52d8ed374a4c46c6f406b0f81aee738 100644 (file)
@@ -1069,7 +1069,9 @@ static bool
 convert_nonlocal_omp_clauses (tree *pclauses, struct walk_stmt_info *wi)
 {
   struct nesting_info *const info = (struct nesting_info *) wi->info;
-  bool need_chain = false, need_stmts = false;
+  /* If not optimizing, we will force the creation of the CHAIN object in
+     convert_all_function_calls, so we need to take it into account here.  */
+  bool need_chain = info->outer && !optimize, need_stmts = false;
   tree clause, decl;
   int dummy;
   bitmap new_suppress;
@@ -1697,7 +1699,9 @@ static bool
 convert_local_omp_clauses (tree *pclauses, struct walk_stmt_info *wi)
 {
   struct nesting_info *const info = (struct nesting_info *) wi->info;
-  bool need_frame = false, need_stmts = false;
+  /* If not optimizing, we will force the creation of the FRAME object in
+     convert_all_function_calls, so we need to take it into account here.  */
+  bool need_frame = info->inner && !optimize, need_stmts = false;
   tree clause, decl;
   int dummy;
   bitmap new_suppress;