OSDN Git Service

* gcc.c-torture/compile/20080625-1.c: Skip for M32C.
[pf3gnuchains/gcc-fork.git] / 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 }