blob: 46d9a0765ec1d55330162ec8ee5650f14d017e3c [file] [log] [blame]
Eric Christopher80a16b02010-07-21 04:54:06 +00001// RUN: not %llvmgcc -std=gnu99 %s -S |& grep "error: 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}