re PR c++/60228 (ICE using lambda in #pragma omp declare reduction)
authorJakub Jelinek <jakub@gcc.gnu.org>
Fri, 29 Nov 2019 09:10:44 +0000 (10:10 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 29 Nov 2019 09:10:44 +0000 (10:10 +0100)
PR c++/60228
* parser.c (cp_parser_omp_declare_reduction_exprs): If
processing_template_decl, wrap the combiner or initializer
into EXPR_STMT.
* decl.c (start_preparsed_function): Don't start a lambda scope
for DECL_OMP_DECLARE_REDUCTION_P functions.
(finish_function): Don't finish a lambda scope for
DECL_OMP_DECLARE_REDUCTION_P functions, nor cp_fold_function
them nor cp_genericize them.
* mangle.c (decl_mangling_context): Look through
DECL_OMP_DECLARE_REDUCTION_P functions.
* semantics.c (expand_or_defer_fn_1): For DECL_OMP_DECLARE_REDUCTION_P
functions, use tentative linkage, don't keep their bodies with
-fkeep-inline-functions and return false at the end.

* g++.dg/gomp/openmp-simd-2.C: Don't expect bodies for
DECL_OMP_DECLARE_REDUCTION_P functions.

* testsuite/libgomp.c++/udr-20.C: New test.
* testsuite/libgomp.c++/udr-21.C: New test.

From-SVN: r278832

libgomp/testsuite/libgomp.c++/udr-20.C
libgomp/testsuite/libgomp.c++/udr-21.C

index 48d4feab7e532fc57c2cdb61d1e342050373dc45..83388758edd9c5fe1bf667f06aab371a5f664eed 100644 (file)
@@ -52,57 +52,3 @@ main ()
   A::foo ();
   B<long>::foo ();
 }
-// PR c++/60228
-// { dg-additional-options "-std=c++11" }
-
-extern "C" void abort ();
-
-struct A
-{
-  typedef int T;
-  #pragma omp declare reduction (x : T : omp_out += omp_in + [](){ return 0; }()) initializer (omp_priv = [](){ return 0; }())
-  static void foo ();
-};
-
-template <typename T>
-struct B
-{
-  #pragma omp declare reduction (x : T : omp_out += omp_in + [](){ return T (0); }()) initializer (omp_priv = [](){ return T (0); }())
-  static void foo ();
-};
-
-void
-A::foo ()
-{
-  int r = 0, s = 0;
-  #pragma omp parallel for reduction (x : r, s)
-  for (int i = 0; i < 64; i++)
-    {
-      r++;
-      s += i;
-    }
-  if (r != 64 || s != (64 * 63) / 2)
-    abort ();
-}
-
-template <typename T>
-void
-B<T>::foo ()
-{
-  T r = 0, s = 0;
-  #pragma omp parallel for reduction (x : r, s)
-  for (int i = 0; i < 64; i++)
-    {
-      r++;
-      s += i;
-    }
-  if (r != 64 || s != (64 * 63) / 2)
-    abort ();
-}
-
-int
-main ()
-{
-  A::foo ();
-  B<long>::foo ();
-}
index 1ecaf473d1d62c12987bef44f75c5cb4ade6822c..9ec655718fdac23501def91242a426c41e3728e1 100644 (file)
@@ -52,57 +52,3 @@ main ()
   A::foo ();
   B<short>::foo ();
 }
-// PR c++/60228
-// { dg-additional-options "-std=c++11" }
-
-extern "C" void abort ();
-
-struct A
-{
-  typedef int T;
-  #pragma omp declare reduction (y : T : [&omp_out, &omp_in]() { omp_out += omp_in; return 0; }()) initializer (omp_priv = [omp_orig]() { return omp_orig; }())
-  static void foo ();
-};
-
-template <typename T>
-struct B
-{
-  #pragma omp declare reduction (y : T : [&omp_out, &omp_in]() { omp_out += omp_in; return 0; }()) initializer (omp_priv = [omp_orig]() { return omp_orig; }())
-  static void foo ();
-};
-
-void
-A::foo ()
-{
-  int r = 0, s = 0;
-  #pragma omp parallel for reduction (y : r, s)
-  for (int i = 0; i < 64; i++)
-    {
-      r++;
-      s += i;
-    }
-  if (r != 64 || s != (64 * 63) / 2)
-    abort ();
-}
-
-template <typename T>
-void
-B<T>::foo ()
-{
-  T r = 0, s = 0;
-  #pragma omp parallel for reduction (y : r, s)
-  for (int i = 0; i < 64; i++)
-    {
-      r++;
-      s += i;
-    }
-  if (r != 64 || s != (64 * 63) / 2)
-    abort ();
-}
-
-int
-main ()
-{
-  A::foo ();
-  B<short>::foo ();
-}