Eric Christopher | 80a16b0 | 2010-07-21 04:54:06 +0000 | [diff] [blame] | 1 | // RUN: not %llvmgcc -std=gnu99 %s -S |& grep "error: alignment for" |
Eric Christopher | d26e89d | 2010-07-14 22:26:35 +0000 | [diff] [blame] | 2 | |
3 | int foo(int a) | ||||
4 | { | ||||
5 | int var[a] __attribute__((__aligned__(32))); | ||||
6 | return 4; | ||||
7 | } |