mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
0388466352
llvm-svn: 108985
11 lines
182 B
C
11 lines
182 B
C
// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
|
|
|
|
extern void bar(int[]);
|
|
|
|
void foo(int a)
|
|
{
|
|
int var[a] __attribute__((__aligned__(16)));
|
|
bar(var);
|
|
return;
|
|
}
|