Add preliminary v2i32 support for SPU backend. As there are no
[oota-llvm.git] / test / FrontendC / vla-2.c
1 // RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
2
3 extern void bar(int[]);
4
5 void foo(int a)
6 {
7   int var[a] __attribute__((__aligned__(16)));
8   bar(var);
9   return;
10 }