1 Copy the DWO and then cd into the output directory, so that the symbolizer would
2 find the DWO if it attempted to.
3 RUN: rm -rf %t && mkdir -p %t
5 RUN: cp %p/Inputs/split-dwarf-no-skel-address.dwo %t
6 RUN: llvm-symbolizer --inlining --no-demangle \
7 RUN: --obj=%p/Inputs/split-dwarf-no-skel-address.o 0x4 | FileCheck %s
9 Built from the following source:
11 __attribute__((always_inline)) inline void f2() { f1(); }
14 Compiled to assembly with clang, modified the skeleton CU to remove the
15 high/low pc (& update the CU length field and abbrev to match) & then
16 compile/objcopy to make the .o and .dwo.
18 Ensure that the f2 inlined frame is not included - it's inefficient to have to
19 go and load all the debug info and search for the address ranges, so assume
20 that a lack of ranges on the CU means the CU covers no addresses.