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