1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Update this to use a "valid" alignment.

llvm-svn: 108985
This commit is contained in:
Eric Christopher 2010-07-21 04:51:24 +00:00
parent c4d93a5a34
commit 0388466352

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;
}