Don't run test on PPC darwin.
[oota-llvm.git] / test / FrontendC / vla-1.c
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
4
5 int foo(int a)
6 {
7   int var[a] __attribute__((__aligned__(32)));
8   return 4;
9 }