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