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:
parent
c4d93a5a34
commit
0388466352
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user