mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
12 lines
237 B
C
12 lines
237 B
C
// RUN: %clang_cc1 -std=gnu99 %s -emit-llvm -o - | FileCheck %s
|
|
// CHECK: alloca {{.*}}, align 16
|
|
|
|
void adr(char *);
|
|
|
|
void vlaalign(int size)
|
|
{
|
|
char __attribute__((aligned(16))) tmp[size+32];
|
|
char tmp2[size+16];
|
|
|
|
adr(tmp);
|
|
}
|