summaryrefslogtreecommitdiffstats
path: root/lldb/source/Symbol/SymbolContext.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-10-04 22:41:51 +0000
committerGreg Clayton <gclayton@apple.com>2011-10-04 22:41:51 +0000
commit7f99513e8f9d1899474176d109fa4f586a1462d3 (patch)
treef528afbd9e2857fd612ec15fbddb5a214e125b6e /lldb/source/Symbol/SymbolContext.cpp
parent6c98dfd0f4f7ee758708fc80fc58ee167669ee5b (diff)
downloadbcm5719-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.cpp3
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();
}
OpenPOWER on IntegriCloud