blob: 382fecd6f5a9de6507ff5b6bd157e7e2138f69df [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
struct U
{
float f;
int i;
};
int foo ()
{
struct U u;
float *pf = (float*)&u; /* { dg-bogus "float included in struct U" } */
*pf = 2.0;
return u.i;
}