blob: ee384066d1ae4b7271e7b2c69d6f0f1e48282bee [file] [log] [blame]
// { dg-do compile }
// { dg-options "-Wstrict-aliasing=2 -fstrict-aliasing" }
struct foo {
char c;
char d;
short s;
int i;
} bar;
int
sub1 (long long int foobar)
{
struct foo *tmp = (struct foo *) &foobar; // { dg-warning "type-punned pointer will" }
return tmp->i;
}