• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1RUN: rm -rf %t && mkdir -p %t
2RUN: cd %t
3RUN: cp %p/Inputs/split-dwarf-no-skel-address.dwo %t
4RUN: echo "%p/Inputs/split-dwarf-no-skel-address.o 0x4" > %t.input
5
6RUN: llvm-symbolizer --functions=linkage --inlining --demangle=false \
7RUN:    --default-arch=i386 < %t.input | FileCheck %s
8
9Built from the following source:
10void f1();
11__attribute__((always_inline)) inline void f2() { f1(); }
12void f3() { f2(); }
13
14Compiled to assembly with clang, modified the skeleton CU to remove the
15high/low pc (& update the CU length field and abbrev to match) & then
16compile/objcopy to make the .o and .dwo.
17
18CHECK: _Z2f2v
19CHECK: test.cpp:2:51
20