blob: 91c9aa10fc89df3a813cec238ea7f41db2c769c0 [file] [log] [blame]
/* { dg-options "-mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */
union {
char *p;
float f;
} u;
void
f (void)
{
u.p = "";
u.f += 1.1f;
}