llvm-project/llvm/test/FrontendC/vla-1.c

8 lines
148 B
C
Raw Normal View History

// RUN: not %llvmgcc -std=gnu99 %s -S |& grep "error: alignment for"
int foo(int a)
{
int var[a] __attribute__((__aligned__(32)));
return 4;
}