summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/991202-1.c
blob: 502acc74965e67ff6406a8f83ada02b8033aae16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
int x, y;

int
main()
{
  x = 2;
  y = x;
  do
    {
      x = y;
      y = 2 * y;
    }
  while ( ! ((y - x) >= 20));
  exit (0);
}