After updating value handles for RAUW, check that no weak or tracking handles
[oota-llvm.git] / test / FrontendC / vla-1.c
1 // RUN: not %llvmgcc -std=gnu99 %s -S |& grep "error: alignment for"
2
3 int foo(int a)
4 {
5   int var[a] __attribute__((__aligned__(32)));
6   return 4;
7 }