blob: 9f0923e29ee5f3e6700519e23dd366448954b501 [file] [log] [blame]
struct c {
double a;
} __attribute((packed)) __attribute((aligned));
void f(struct c *, struct c);
void g(struct c *ptr)
{
ptr++;
f(ptr, *ptr);
}