mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
14904ce25c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108371 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
178 B
C
9 lines
178 B
C
// RUN: true
|
|
// %llvmgcc -std=gnu99 %s -S |& grep {error: "is greater than the stack alignment" }
|
|
|
|
int foo(int a)
|
|
{
|
|
int var[a] __attribute__((__aligned__(32)));
|
|
return 4;
|
|
}
|