fix rdar://9289583 - fast isel should handle non-canonical commutative binops
[oota-llvm.git] / test / FrontendC / vla-3.c
1 // RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
2
3 void adr(char *);
4
5 void vlaalign(int size)
6 {
7     char __attribute__((aligned(16))) tmp[size+32];
8     char tmp2[size+16];
9
10     adr(tmp);
11 }