summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/sizeof-vla.c
blob: b0c514fd0161c66c840d2f0b59384a69f15391e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -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