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