modernc.org/cc@v1.0.1/testdata/gcc-6.3.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  }