(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
goacc/
kernels-decompose-pr104061-1-1.c
       1  /* { dg-additional-options "--param openacc-kernels=decompose" } */
       2  
       3  /* { dg-additional-options "-g0" } */
       4  /* { dg-additional-options "-O1" } */
       5  
       6  /* { dg-additional-options "-fopt-info-all-omp" } */
       7  
       8  /* { dg-additional-options "--param=openacc-privatization=noisy" }
       9     Prune a few: uninteresting, and potentially varying depending on GCC configuration (data types):
      10     { dg-prune-output {note: variable 'D\.[0-9]+' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} } */
      11  
      12  int arr_0;
      13  
      14  void
      15  foo (void)
      16  {
      17  #pragma acc kernels /* { dg-line l_compute1 } */
      18    /* { dg-note {OpenACC 'kernels' decomposition: variable 'arr_0' in 'copy' clause requested to be made addressable} {} { target *-*-* } l_compute1 }
      19       { dg-note {variable 'arr_0' made addressable} {} { target *-*-* } l_compute1 } */
      20    /* { dg-note {variable 'arr_0\.0' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} {} { target *-*-* } l_compute1 } */
      21    {
      22      int k;
      23  
      24      /* { dg-note {forwarded loop nest in OpenACC 'kernels' region to 'parloops' for analysis} {} { target *-*-* } .+1 } */
      25  #pragma acc loop /* { dg-line l_loop_k1 } */
      26      /* { dg-note {variable 'k' declared in block isn't candidate for adjusting OpenACC privatization level: not addressable} {} { target *-*-* } l_loop_k1 } */
      27      /* { dg-note {variable 'k' in 'private' clause isn't candidate for adjusting OpenACC privatization level: not addressable} {} { target *-*-* } l_loop_k1 } */
      28      /* { dg-optimized {assigned OpenACC seq loop parallelism} {} { target *-*-* } l_loop_k1 } */
      29      for (k = 0; k < 2; k++)
      30        arr_0 += k;
      31    }
      32  }