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
[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-cov
/
Inputs
/
multiple_objects
/
header.h
blob
03b37cd2dbb4a84d6f3c9f85888d603a0b9fe5e0
1
static
inline
void
f1
() {
2
#ifdef DEF
3
if
(
false
&&
false
)
4
return
;
5
6
if
(
true
||
false
||
true
)
7
return
;
8
9
if
(
true
&&
false
)
10
return
;
11
#endif
12
}
13
14
template
<
typename T
>
15
void
f2
(
T
**
x
) {
16
#ifdef DEF
17
if
(
false
&&
false
)
18
*
x
=
nullptr
;
19
20
if
(
true
||
false
||
true
)
21
*
x
=
nullptr
;
22
23
if
(
true
&&
false
)
24
*
x
=
nullptr
;
25
#endif
26
}
27
28
static
inline
void
f3
() {
29
}