llvm-6502/test/FrontendC/vla-1.c
2010-07-30 18:52:47 +00:00

8 lines
151 B
C

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