Fixed some bugs.
[llvm/zpu.git] / test / FrontendC / vla-2.c
blob555cfc789250beb8cf82efec958050a7228c57b7
1 // RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
3 extern void bar(int[]);
5 void foo(int a)
7 int var[a] __attribute__((__aligned__(16)));
8 bar(var);
9 return;