xref
: /
netbsd-src
/
sys
/
external
/
bsd
/
compiler_rt
/
dist
/
test
/
profile
/
Inputs
/
instrprof-shared-lib.c
(revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
int
g1
= 0;
2
int
g2
=
1
;
3
4
void
foo
(
int
n
) {
5
if
(
n
%
5
== 0)
6
g1
++;
7
else
8
g2
++;
9
}
10