(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr83034.c
       1  /* PR debug/83034 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-funroll-loops -Ofast -g" } */
       4  
       5  __attribute__((__simd__)) float expf (float);
       6  
       7  void
       8  foo (float *a, int x)
       9  {
      10    for (; x; x++)
      11      a[x] = expf (x);
      12  }