Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / ieee / 20001122-1.c
blobfd7e70262aaee39d429cf12935e51bdf0bfe915b
1 volatile double a, *p;
3 int main ()
5 double c, d;
6 volatile double b;
8 d = 1.0;
9 p = &b;
12 c = d;
13 d = c * 0.5;
14 b = 1 + d;
15 } while (b != 1.0);
17 a = 1.0 + c;
18 if (a == 1.0)
19 abort();
21 exit (0);