blob: 94b3722d2c8cdc12814dcb84f0f0fc99be84d3cf [file] [log] [blame]
/* PR c/51628. */
/* { dg-do compile } */
/* { dg-options "-O" } */
struct A { int i; };
struct B { struct A a; };
struct C { struct B b __attribute__ ((packed)); };
extern struct C *p;
int*
g8 (void)
{
return &p->b.a.i;
/* { dg-warning "may result in an unaligned pointer value" "" { target *-*-* } .-1 } */
}