mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
21 lines
376 B
C
21 lines
376 B
C
/* { dg-do run } */
|
|
|
|
#include <stdlib.h>
|
|
int main()
|
|
{
|
|
int x = 1;
|
|
#pragma omp parallel
|
|
#pragma omp single
|
|
{
|
|
#pragma omp task shared(x) depend(out: x)
|
|
x = 2;
|
|
#pragma omp task shared(x) depend(in: x)
|
|
if (x != 2)
|
|
abort ();
|
|
#pragma omp task shared(x) depend(in: x)
|
|
if (x != 2)
|
|
abort ();
|
|
}
|
|
return 0;
|
|
}
|