mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 20:34:38 +00:00
11 lines
182 B
C
11 lines
182 B
C
|
// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 32"
|
||
|
|
||
|
extern void bar(int[]);
|
||
|
|
||
|
void foo(int a)
|
||
|
{
|
||
|
int var[a] __attribute__((__aligned__(32)));
|
||
|
bar(var);
|
||
|
return;
|
||
|
}
|