blob: e290349cd156401469b55ab00bf6790453579261 [file] [log] [blame]
Eric Christopherd26e89d2010-07-14 22:26:35 +00001// RUN: %llvmgcc -std=gnu99 %s -S |& grep {error: "is greater than the stack alignment" }
2
3int foo(int a)
4{
5 int var[a] __attribute__((__aligned__(32)));
6 return 4;
7}