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