blob: 8eba671a05825d97cae1c770d2f767977c5b9c58 [file] [log] [blame]
// { dg-do compile }
// { dg-options "-Wstrict-aliasing=2 -fstrict-aliasing" }
struct s {
char *p;
};
void
func(struct s *ptr)
{
*(void **)&ptr->p = 0; /* { dg-warning "type-punned pointer" "" { xfail *-*-* } } */
}