(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
gomp/
depobj-2.c
       1  /* PR c++/98072 */
       2  
       3  typedef struct __attribute__((__aligned__ (sizeof (void *)))) omp_depend_t {
       4    char __omp_depend_t__[2 * sizeof (void *)];
       5  } omp_depend_t;
       6  
       7  void
       8  foo (int *x, omp_depend_t *y, int z)
       9  {
      10    #pragma omp depobj (*y) depend (in: x[z])
      11  }