modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.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  }