OSDN Git Service

PR middle-end/27325
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 May 2006 10:40:21 +0000 (10:40 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 May 2006 10:40:21 +0000 (10:40 +0000)
* omp-low.c (lower_omp_sections): Call maybe_catch_exception
on statement list containing also constructors and destructors.
(lower_omp_single, lower_omp_for, lower_omp_parallel): Likewise.

* g++.dg/gomp/pr27325.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113454 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/omp-low.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/gomp/pr27325.C [new file with mode: 0644]

index e4fa4b6..984916d 100644 (file)
@@ -1,5 +1,10 @@
 2006-05-02  Jakub Jelinek  <jakub@redhat.com>
 
+       PR middle-end/27325
+       * omp-low.c (lower_omp_sections): Call maybe_catch_exception
+       on statement list containing also constructors and destructors.
+       (lower_omp_single, lower_omp_for, lower_omp_parallel): Likewise.
+
        PR middle-end/27310
        * except.c (duplicate_eh_regions): Fix clearing of
        cfun->eh->region_array entries.
index 9c90b90..92d71ae 100644 (file)
@@ -3415,7 +3415,6 @@ lower_omp_sections (tree *stmt_p, omp_context *ctx)
 
   block = make_node (BLOCK);
   bind = build3 (BIND_EXPR, void_type_node, NULL, body, block);
-  maybe_catch_exception (&BIND_EXPR_BODY (bind));
 
   olist = NULL_TREE;
   lower_reduction_clauses (OMP_SECTIONS_CLAUSES (stmt), &olist, ctx);
@@ -3437,6 +3436,8 @@ lower_omp_sections (tree *stmt_p, omp_context *ctx)
   append_to_statement_list (olist, &new_body);
   append_to_statement_list (dlist, &new_body);
 
+  maybe_catch_exception (&new_body);
+
   t = make_node (OMP_RETURN);
   OMP_RETURN_NOWAIT (t) = !!find_omp_clause (OMP_SECTIONS_CLAUSES (stmt),
                                             OMP_CLAUSE_NOWAIT);
@@ -3572,7 +3573,6 @@ lower_omp_single (tree *stmt_p, omp_context *ctx)
   lower_rec_input_clauses (OMP_SINGLE_CLAUSES (single_stmt),
                           &BIND_EXPR_BODY (bind), &dlist, ctx);
   lower_omp (&OMP_SINGLE_BODY (single_stmt), ctx);
-  maybe_catch_exception (&OMP_SINGLE_BODY (single_stmt));
 
   append_to_statement_list (single_stmt, &BIND_EXPR_BODY (bind));
 
@@ -3585,6 +3585,8 @@ lower_omp_single (tree *stmt_p, omp_context *ctx)
 
   append_to_statement_list (dlist, &BIND_EXPR_BODY (bind));
 
+  maybe_catch_exception (&BIND_EXPR_BODY (bind));
+
   t = make_node (OMP_RETURN);
   OMP_RETURN_NOWAIT (t) = !!find_omp_clause (OMP_SINGLE_CLAUSES (single_stmt),
                                             OMP_CLAUSE_NOWAIT);
@@ -3852,7 +3854,6 @@ lower_omp_for (tree *stmt_p, omp_context *ctx)
 
   append_to_statement_list (stmt, body_p);
 
-  maybe_catch_exception (&OMP_FOR_BODY (stmt));
   append_to_statement_list (OMP_FOR_BODY (stmt), body_p);
 
   t = make_node (OMP_CONTINUE);
@@ -3863,6 +3864,8 @@ lower_omp_for (tree *stmt_p, omp_context *ctx)
   lower_reduction_clauses (OMP_FOR_CLAUSES (stmt), body_p, ctx);
   append_to_statement_list (dlist, body_p);
 
+  maybe_catch_exception (body_p);
+
   /* Region exit marker goes at the end of the loop body.  */
   t = make_node (OMP_RETURN);
   OMP_RETURN_NOWAIT (t) = fd.have_nowait;
@@ -3900,7 +3903,6 @@ lower_omp_parallel (tree *stmt_p, omp_context *ctx)
   par_ilist = NULL_TREE;
   lower_rec_input_clauses (clauses, &par_ilist, &par_olist, ctx);
   lower_omp (&par_body, ctx);
-  maybe_catch_exception (&par_body);
   lower_reduction_clauses (clauses, &par_olist, ctx);
 
   /* Declare all the variables created by mapping and the variables
@@ -3936,6 +3938,7 @@ lower_omp_parallel (tree *stmt_p, omp_context *ctx)
   append_to_statement_list (par_ilist, &new_body);
   append_to_statement_list (par_body, &new_body);
   append_to_statement_list (par_olist, &new_body);
+  maybe_catch_exception (&new_body);
   t = make_node (OMP_RETURN);
   append_to_statement_list (t, &new_body);
   OMP_PARALLEL_BODY (stmt) = new_body;
index f9cbeb3..b0fda63 100644 (file)
@@ -1,5 +1,8 @@
 2006-05-02  Jakub Jelinek  <jakub@redhat.com>
 
+       PR middle-end/27325
+       * g++.dg/gomp/pr27325.C: New test.
+
        PR middle-end/27310
        * g++.dg/gomp/pr27310.C: New test.
 
diff --git a/gcc/testsuite/g++.dg/gomp/pr27325.C b/gcc/testsuite/g++.dg/gomp/pr27325.C
new file mode 100644 (file)
index 0000000..05bc481
--- /dev/null
@@ -0,0 +1,25 @@
+// PR middle-end/27325 
+// { dg-do compile }
+// { dg-options "-O2 -fopenmp" }
+
+struct A { A(); ~A(); int i; };
+
+int
+foo ()
+{
+  A a;
+#pragma omp parallel private (a)
+  for (int i = 0; i < 5; ++i)
+    a.i++;
+  return 0;
+}
+
+int
+bar ()
+{
+  A a;
+#pragma omp for private (a)
+  for (int i = 0; i < 5; ++i)
+    a.i++;
+  return 0;
+}