8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/991202-1.c
Bernd Schmidt bc622faec9 Four new tests
From-SVN: r30759
1999-12-02 12:37:50 +00:00

17 lines
134 B
C

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