Jonas Devlieghere a6ef1abc09 [dsymutil] Rename llvm-dsymutil -> dsymutil
Now that almost all functionality of Apple's dsymutil has been
upstreamed, the open source variant can be used as a drop in
replacement. Hence we feel it's no longer necessary to have the llvm
prefix.

Differential revision: https://reviews.llvm.org/D44527

llvm-svn: 327790
2018-03-18 11:38:41 +00:00

34 lines
747 B
Plaintext

# Verify that we don't follow DW_AT_sibling references.
#
# Source:
# struct A { };
# struct B { };
#
# struct C {
# A a;
# };
#
# B b;
# C c;
#
# Compiled with Apple-GCC 4.0.1 (build 5370):
# g++ -g -c sibling.cpp -o sibling.o
# RUN: dsymutil -arch ppc -f -oso-prepend-path=%p/../Inputs/ -y %s -o - | llvm-dwarfdump -debug-info - | FileCheck %s
# CHECK: DW_TAG_structure_type
# CHECK-NEXT: DW_AT_name ("A")
# CHECK: DW_TAG_structure_type
# CHECK-NEXT: DW_AT_name ("C")
# CHECK-NOT: DW_AT_name ("B")
---
triple: 'ppc-apple-darwin'
objects:
- filename: sibling.o
timestamp: 1518197670
symbols:
- { sym: _c, objAddr: 0x000000000000017e, binAddr: 0x0000000100000FA0, size: 0x00000010 }
...