aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr107835.c
blob: 122beff2f112775127c7dee37090f2c1cef3c83e (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR tree-optimization/107835 */

int *
foo (void)
{
  int *x = 0;
  unsigned n = n;
  for (; n; --n, ++x)
    ;
  return x;
}