rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr40233.c

11 lines
144 B
C

typedef int aligned __attribute__((aligned(64)));
struct Frame {
aligned i;
};
void foo(struct Frame *p)
{
aligned *q = &p->i;
*q = 0;
}