blob: d6dda9371f800db226ad0e720000eb2a4f1fc636 [file] [log] [blame]
Eric Christopherde8d4052010-07-20 20:32:47 +00001// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 32"
2
3extern void bar(int[]);
4
5void foo(int a)
6{
7 int var[a] __attribute__((__aligned__(32)));
8 bar(var);
9 return;
10}