blob: bcac6d70ad53c5e83717e7fc9ed66a8f247bb74a [file] [log] [blame]
/* PR c/51628. */
/* { dg-do compile } */
/* { dg-options "-O" } */
struct A {
int i;
} __attribute__ ((packed));
int*
f (struct A *p, int *q)
{
return q ? q : &p->i;
/* { dg-warning "may result in an unaligned pointer value" "" { target *-*-* } .-1 } */
}