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
/
Import
/
pack-expansion-expr
/
Inputs
/
F.cpp
blob
528451c855d85644a7d4124b8dc161ff18c94b09
1
template
<
typename
...
T
>
2
void
sink
(
T
...
a
);
3
4
template
<
typename
...
T
>
5
void
packfuncT
(
T
...
a
) {
6
sink
(
a
...);
7
}
8
9
void
f
() {
10
packfuncT
(
1
,
2
,
3
);
11
}