OSDN Git Service

* expr.c (highest_pow2_factor_for_type): Rename into
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 991202-1.c
1 int x, y;
2
3 int
4 main()
5 {
6   x = 2;
7   y = x;
8   do
9     {
10       x = y;
11       y = 2 * y;
12     }
13   while ( ! ((y - x) >= 20));
14   exit (0);
15 }
16