aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/align-3.c
blob: 2838e773245eae7e21ca916d71c7386e8be612ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void func(void) __attribute__((aligned(256)));

void func(void) 
{
}

int main()
{
  if (__alignof__(func) != 256)
    abort ();
  return 0;
}