view libgomp/testsuite/libgomp.c/examples-4/task_dep-4.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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;
}