diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-10-04 22:41:51 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-10-04 22:41:51 +0000 |
| commit | 7f99513e8f9d1899474176d109fa4f586a1462d3 (patch) | |
| tree | f528afbd9e2857fd612ec15fbddb5a214e125b6e /lldb/source/Symbol/SymbolContext.cpp | |
| parent | 6c98dfd0f4f7ee758708fc80fc58ee167669ee5b (diff) | |
| download | bcm5719-llvm-7f99513e8f9d1899474176d109fa4f586a1462d3.tar.gz bcm5719-llvm-7f99513e8f9d1899474176d109fa4f586a1462d3.zip | |
Enable all the new accelerator tables if they are present and don't manually
index the DWARF. Also fixed an issue with memory accelerator tables with a
size of 1 where we would loop infinitely.
Added support for parsing the new .apple_namespaces section which gives us a
memory hash table for looking up namespaces.
llvm-svn: 141128
Diffstat (limited to 'lldb/source/Symbol/SymbolContext.cpp')
| -rw-r--r-- | lldb/source/Symbol/SymbolContext.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Symbol/SymbolContext.cpp b/lldb/source/Symbol/SymbolContext.cpp index 85da9799840..460f6c58ce9 100644 --- a/lldb/source/Symbol/SymbolContext.cpp +++ b/lldb/source/Symbol/SymbolContext.cpp @@ -981,7 +981,8 @@ SymbolContextList::Dump(Stream *s, Target *target) const collection::const_iterator pos, end = m_symbol_contexts.end(); for (pos = m_symbol_contexts.begin(); pos != end; ++pos) { - pos->Dump(s, target); + //pos->Dump(s, target); + pos->GetDescription(s, eDescriptionLevelVerbose, target); } s->IndentLess(); } |

