aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/vla-1.c
blob: 46d9a0765ec1d55330162ec8ee5650f14d017e3c (plain)
1
2
3
4
5
6
7
// RUN: not %llvmgcc -std=gnu99 %s -S |& grep "error: alignment for"

int foo(int a)
{
  int var[a] __attribute__((__aligned__(32)));
  return 4;
}