brintos

brintos / llvm-project-archived public Read only

0
0
Text · 237 B · 66acf58 Raw
13 lines · c
1// RUN: %clang_cc1 -std=gnu99 %s -emit-llvm -o - | FileCheck %s2// CHECK: alloca {{.*}}, align 163 4void adr(char *);5 6void vlaalign(int size)7{8    char __attribute__((aligned(16))) tmp[size+32];9    char tmp2[size+16];10 11    adr(tmp);12}13