(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr40233.c
       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  }