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