Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930614-1.c
blobcc30579691c0c50d3f769cf62522c0fbeda8694c
1 void abort (void);
2 void exit (int);
4 void
5 f (double *ty)
7 *ty = -1.0;
10 int
11 main (void)
13 double foo[6];
14 double tx = 0.0, ty, d;
16 f (&ty);
18 if (ty < 0)
19 ty = -ty;
20 d = (tx > ty) ? tx : ty;
21 if (ty != d)
22 abort ();
23 exit (0);