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
/
ASTMerge
/
function-cpp
/
Inputs
/
function-1.cpp
blob
ee97a1a8a5da35fb67449f3b8dd8cbba80f823c6
1
2
template
<
typename T
>
constexpr
T
add
(
T arg1
,
T arg2
) {
3
return
arg1
+
arg2
;
4
}
5
6
template
<>
constexpr
int
add
(
int
arg1
,
int
arg2
) {
7
return
arg1
+
arg2
+
2
;
8
}