blob: 2ce3406481f787afc065f5b2919ec81332f5a387 [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 { ! default_packed } } .-1 } */
}