xref: /llvm-project/llvm/test/tools/llvm-symbolizer/Inputs/symbols.part2.cpp (revision e144ae54dcb96838a6176fd9eef21028935ccd4f)
1 #include "symbols.h"
2 
3 int static static_var = 4;
4 
static_func_01(int x)5 static int static_func_01(int x) {
6   static_var--;
7   return x;
8 }
9 
func_02(int x)10 int func_02(int x) {
11   static_var = x;
12   return static_func_01(x);
13 }
14 
func_05(int x)15 int func_05(int x) {
16   int res = static_var;
17   return res + func_03(x);
18 }
19