repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
sizeof-vla.c
blob
c5fc91251933386655c766713e9199ba7b085bc4
1
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o %t %s
2
3
// PR3442
4
5
void
*
g
(
unsigned long
len
);
6
7
void
8
f
(
int
n
)
9
{
10
unsigned
begin_set
[
n
];
11
12
g
(
sizeof
(
begin_set
));
13
}