brintos

brintos / llvm-project-archived public Read only

0
0
Text · 260 B · 35e66d6 Raw
19 lines · cpp
1#include "symbols.h"2 3int static static_var = 4;4 5static int static_func_01(int x) {6  static_var--;7  return x;8}9 10int func_02(int x) {11  static_var = x;12  return static_func_01(x);13}14 15int func_05(int x) {16  int res = static_var;17  return res + func_03(x);18}19