[rtsan] Add fork/execve interceptors (#117198)
[llvm-project.git] / llvm / test / tools / llvm-symbolizer / Inputs / split-dwarf-multiple-cu.cpp
blob85276ca4b2c63f63bf0ae6c218e384af4024b91b
1 void f1();
2 __attribute__((always_inline)) inline void f2() {
3 f1();
5 void f3() {
6 f2();
9 // $ cat > other.cpp
10 // extern int i;
11 // int i;
12 // $ clang++ other.cpp split-dwarf-multiple-cu.cpp -g -c -Xclang \
13 // -fdebug-compilation-dir -Xclang . -emit-llvm -S
14 // $ llvm-link other.ll split-dwarf-multiple-cu.ll -o split-dwarf-multiple-cu.bc
15 // $ clang++ -gsplit-dwarf split-dwarf-multiple-cu.bc -c