blob: eca9675a419f8e120bbefe51fdf3d8f9cbde9964 [file] [log] [blame]
Eric Christopher18a41c92011-03-24 21:59:03 +00001// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
2
3void adr(char *);
4
5void vlaalign(int size)
6{
7 char __attribute__((aligned(16))) tmp[size+32];
8 char tmp2[size+16];
9
10 adr(tmp);
11}