mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-07 11:33:44 +00:00
45f57a65b6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109876 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
151 B
C
8 lines
151 B
C
// RUN: %llvmgcc_only -std=gnu99 %s -S |& grep {warning: alignment for}
|
|
|
|
int foo(int a)
|
|
{
|
|
int var[a] __attribute__((__aligned__(32)));
|
|
return 4;
|
|
}
|