blob: b3487edde74f9d02e2648145783e36162e8eacd9 [file] [log] [blame]
typedef int aligned __attribute__((aligned(64)));
struct Frame {
aligned i;
};
void foo(struct Frame *p)
{
aligned *q = &p->i;
*q = 0;
}