8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/991202-1.c

17 lines
134 B
C
Raw Normal View History

1999-12-02 07:37:50 -05:00
int x, y;
int
main()
{
x = 2;
y = x;
do
{
x = y;
y = 2 * y;
}
while ( ! ((y - x) >= 20));
exit (0);
}