OSDN Git Service

testsuite/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / align-3.c
1 void func(void) __attribute__((aligned(256)));
2
3 void func(void) 
4 {
5 }
6
7 int main()
8 {
9   if (__alignof__(func) != 256)
10     abort ();
11   return 0;
12 }