diff --git a/test/FrontendC/vla-2.c b/test/FrontendC/vla-2.c new file mode 100644 index 00000000000..d6dda9371f8 --- /dev/null +++ b/test/FrontendC/vla-2.c @@ -0,0 +1,10 @@ +// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 32" + +extern void bar(int[]); + +void foo(int a) +{ + int var[a] __attribute__((__aligned__(32))); + bar(var); + return; +}