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
/
pr15753.cpp
blob
fd2000be6e3a49556d2b99651767afb42aa4a1dd
1
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2
3
template
<
typename T
>
static int
Foo
(
T t
);
4
template
<
typename T
>
5
int
Foo
(
T t
) {
6
return
t
;
7
}
8
template
<>
int
Foo
<
int
>(
int
i
) {
9
return
i
;
10
}
11
12
// CHECK-NOT: define