Fixed some bugs.
[llvm/zpu.git] / test / FrontendC / vla-1.c
blob77f78a5e3af743da66888961a15f472adc2ba3a1
1 // RUN: %llvmgcc_only -std=gnu99 %s -S |& grep {warning: alignment for}
2 // ppc does not support this feature, and gets a fatal error at runtime.
3 // XFAIL: powerpc
5 int foo(int a)
7 int var[a] __attribute__((__aligned__(32)));
8 return 4;