blob: 0a74907f7b2db3123e060209519e92b78f9a49a2 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -std=gnu99 %s -emit-llvm -o - | grep ".*alloca.*align 16"
2
3extern void bar(int[]);
4
5void foo(int a)
6{
7 int var[a] __attribute__((__aligned__(16)));
8 bar(var);
9 return;
10}