2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 991026-1.c
blob191742112bda4fc3f131e6c3565d3faf82c49192
1 void something_f(float);
3 int foo(void)
5 union
7 float f;
8 double d;
9 } u, *pu = &u;
11 u.f = 1.0;
12 something_f(u.f);