aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr102131-3.c
blob: aed10c973e60e2e0ea79b06f4ce2c82f034f25b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do run } */

int a;
int main()
{
  unsigned b = 0;
  for (a = 2; a < 8; a += 2)
    if (++b > a)
      __builtin_abort();
  return 0;
}