blob: c6c58f6cc36dbd05e13b51b5e0a5b27467b662bb [file] [log] [blame]
Bob Wilson45f57a62010-07-30 18:52:47 +00001// RUN: %llvmgcc_only -std=gnu99 %s -S |& grep {warning: alignment for}
Eric Christopherd26e89d2010-07-14 22:26:35 +00002
3int foo(int a)
4{
5 int var[a] __attribute__((__aligned__(32)));
6 return 4;
7}