brintos

brintos / llvm-project-archived public Read only

0
0
Text · 500 B · edf956d Raw
19 lines · plain
1#include "dwarfdump-inl-test.h"2static inline int inlined_f() {3  volatile int x = inlined_g();4  return x;5}6 7int main() {8  return inlined_f();9}10 11// Built with Clang 3.212// $ mkdir -p /tmp/dbginfo13// $ cp dwarfdump-inl-test.* /tmp/dbginfo14// $ cd /tmp/dbginfo15// $ clang++ -O2 -gline-tables-only -fsanitize=address -fPIC -shared dwarfdump-inl-test.cc -o <output>16//17// And similarly with with gcc 4.8.2:18// $ gcc dwarfdump-inl-test.cc -o dwarfdump-inl-test.high_pc.elf-x86-64 -g -O2 -fPIC -shared19