(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr93174.c
       1  /* PR target/93174 */
       2  
       3  unsigned long long a[2];
       4  void bar (void);
       5  
       6  void
       7  foo (int c)
       8  {
       9    int e = c >> 2;
      10    a[0] += c;
      11    a[1] = a[0] < c;
      12    while (e--)
      13      bar ();
      14  }