* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr53663-3.c
blob96af5db10aca3fbed4d02817d423cf0630a1d2a7
1 /* { dg-do run } */
3 extern void abort (void);
5 union u
7 int i;
8 float f;
9 } v;
11 float foo (float *f)
13 *f = 1;
14 v.i = 0;
15 v.f = 0.;
16 return *f;
19 int main()
21 if (foo (&v.f) != 0.)
22 abort ();
23 return 0;