modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr40233.c (about) 1 typedef int aligned __attribute__((aligned(64))); 2 struct Frame { 3 aligned i; 4 }; 5 6 void foo(struct Frame *p) 7 { 8 aligned *q = &p->i; 9 *q = 0; 10 }