modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/20000405-3.c (about)

     1  struct foo {
     2    void *entry[40];
     3  } __attribute__ ((aligned(32)));
     4  
     5  int foo (struct foo *ptr, int idx, void *pointer)
     6  {
     7    ptr->entry[idx] = pointer;
     8    return 0;
     9  }