Update this to use a "valid" alignment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2010-07-21 04:51:24 +00:00
parent 7d7d15a159
commit 302313fc09

View File

@ -1,10 +1,10 @@
// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 32"
// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
extern void bar(int[]);
void foo(int a)
{
int var[a] __attribute__((__aligned__(32)));
int var[a] __attribute__((__aligned__(16)));
bar(var);
return;
}