mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
dfdd97351b
This makes the interface simpler and more consistent with the interface for .dSYM files and fixes a bug where llvm-symbolizer would not read the dwp if it was asked to symbolize data before symbolizing code. Differential Revision: https://reviews.llvm.org/D63114 llvm-svn: 363025
14 lines
375 B
Plaintext
14 lines
375 B
Plaintext
RUN: rm -rf %t
|
|
RUN: mkdir -p %t
|
|
|
|
RUN: cp %p/Inputs/split-dwarf-dwp.o %t/split-dwarf-dwp-different-name.o
|
|
|
|
RUN: echo -e 'DATA 0\n0x54' | \
|
|
RUN: llvm-symbolizer --dwp=%p/Inputs/split-dwarf-dwp.o.dwp \
|
|
RUN: --obj=%t/split-dwarf-dwp-different-name.o | FileCheck %s
|
|
|
|
CHECK: f2
|
|
CHECK-NEXT: split-dwarf-dwp.cpp:3:3
|
|
CHECK-NEXT: main
|
|
CHECK-NEXT: split-dwarf-dwp.cpp:10:0
|