1 /* { dg-options "-mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */
2 
3 union {
4   char *p;
5   float f;
6 } u;
7 
8 void
f(void)9 f (void)
10 {
11   u.p = "";
12   u.f += 1.1f;
13 }
14