rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20000405-3.c

10 lines
161 B
C

struct foo {
void *entry[40];
} __attribute__ ((aligned(32)));
int foo (struct foo *ptr, int idx, void *pointer)
{
ptr->entry[idx] = pointer;
return 0;
}