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.part2.cpp
blob
35e66d62622f89c0ccb171a9216a87a914cd3a12
1
#include
"symbols.h"
2
3
int static
static_var
=
4
;
4
5
static int
static_func_01
(
int
x
) {
6
static_var
--;
7
return
x
;
8
}
9
10
int
func_02
(
int
x
) {
11
static_var
=
x
;
12
return
static_func_01
(
x
);
13
}
14
15
int
func_05
(
int
x
) {
16
int
res
=
static_var
;
17
return
res
+
func_03
(
x
);
18
}