Reapply r121905 (automatic synthesis of @llvm.sadd.with.overflow) with a fix for...
[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 }