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