summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/sizeof-vla.c
blob: af5088553e487520157ffa04ead16c91ce5bd5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: clang-cc -triple x86_64-unknown-unknown -emit-llvm -o %t %s

// PR3442

static void *g(unsigned long len);

void
f(int n)
{
 unsigned begin_set[n];
 
 g(sizeof(begin_set));
}
OpenPOWER on IntegriCloud