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
[rtsan] Add fork/execve interceptors (#117198)
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-symbolizer
/
Inputs
/
symbols.part3.c
blob
1284be505b6bac4b5c7cab81e1792bb37f7cc6fd
1
static int
static_func
(
int
);
2
static int
static_var
=
0
;
3
4
int
static_func
(
int
x
) {
5
static_var
++;
6
return
static_var
+
x
;
7
}
8
9
int
func_06
(
int
x
) {
10
return
static_func
(
x
);
11
}
12