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
/
CodeGenCXX
/
pr12104.h
blob
f3e9363fe19197a15a5d4c293de08389cec468a3
1
template
<
int
dimm
>
struct
Patch
{
2
static const unsigned int
no_neighbor
=
1
;
3
};
4
template
<
int
dim
>
5
const unsigned int
Patch
<
dim
>::
no_neighbor
;
6
void
f
(
const unsigned int
);
7
void
g
() {
8
f
(
Patch
<
1
>::
no_neighbor
);
9
}