Fix this up per llvm-gcc r109819.
[oota-llvm.git] / test / FrontendC / vla-1.c
1 // RUN: %llvmgcc_only -std=gnu99 %s -S |& grep "warning: alignment for"
2
3 int foo(int a)
4 {
5   int var[a] __attribute__((__aligned__(32)));
6   return 4;
7 }