bolt/deps/llvm-18.1.8/llvm/test/tools/llvm-symbolizer/Inputs/symbols.part1.cpp
2025-02-14 19:21:04 +01:00

25 lines
340 B
C++

#include "symbols.h"
int global_01 = 22;
int static static_var = 0;
static int static_func_01(int x) {
static_var = x;
return global_01;
}
int func_01() {
int res = 1;
return res + static_func_01(22);
}
int func_04() {
static_var = 0;
return 22;
}
int func_04(int x) {
int res = static_var;
return res + func_03(x);
}