summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/gomp/pr57412.c
blob: 246f532395405a9db48196491bcea8480f298d21 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */

int thr;
#pragma omp threadprivate (thr)
int foo ()
{
  int l;
#pragma omp parallel copyin (thr) reduction (||:l)
  ;
}