(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr87790.c
       1  /* { dg-do compile } */
       2  /* { dg-require-profiling "-fprofile-generate" } */
       3  /* { dg-options "-Ofast -fprofile-generate" } */
       4  /* { dg-additional-options "-march=znver1" { target { x86_64-*-* i?86-*-* } } } */
       5  
       6  int a, b;
       7  void c(int d[][8])
       8  {
       9    int e, f;
      10    for (; b; b++) {
      11      e = d[b][0] % 4 * 21;
      12      if (e >= 21)
      13        e--;
      14      a = d[b][0] - e;
      15      f = 1;
      16      for (; f != 8; f++)
      17        d[b][f] = a;
      18    }
      19  }