[Lldb-commits] [PATCH] D40283: lldb: Use the DWARF linkage name when importing C++ methods

Nelson Elhage via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 10 14:23:37 PST 2018


nelhage added a comment.

Further evidence that the ABI tag is never stored separately:

  $ strings -a -n4 test_abi_tag | grep cxx11
  helloWorld_cxx11
  _ZN1A16helloWorld_cxx11B5cxx11Ev
  _ZN1A16helloWorld_cxx11B5cxx11Ev

Those three instances are, I presume, the `DW_AT_name`, and the `DW_AT_linkage_name`, and the ELF symbol table.


https://reviews.llvm.org/D40283





More information about the lldb-commits mailing list