- Make BranchProbability constructor public.
[llvm/stm8.git] / test / FrontendC / vla-3.c
blobeca9675a419f8e120bbefe51fdf3d8f9cbde9964
1 // RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
3 void adr(char *);
5 void vlaalign(int size)
7 char __attribute__((aligned(16))) tmp[size+32];
8 char tmp2[size+16];
10 adr(tmp);