brintos

brintos / llvm-project-archived public Read only

0
0
Text · 402 B · 85276ca Raw
16 lines · cpp
1void f1();2__attribute__((always_inline)) inline void f2() {3  f1();4}5void f3() {6  f2();7}8 9// $ cat > other.cpp10// 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 -S14// $ llvm-link other.ll split-dwarf-multiple-cu.ll -o split-dwarf-multiple-cu.bc15// $ clang++ -gsplit-dwarf split-dwarf-multiple-cu.bc -c16