summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2010-09-08 17:53:19 +0000
committerGreg Clayton <gclayton@apple.com>2010-09-08 17:53:19 +0000
commitc78e9a2c81147553baf2bdd5394056115b12f3b9 (patch)
treea3b1756c033173d4f829c608f8edcabcf56c39b8 /lldb/source/Plugins
parent9f157f574d04e098fac44d80a2cf66e18cf20668 (diff)
downloadbcm5719-llvm-c78e9a2c81147553baf2bdd5394056115b12f3b9.tar.gz
bcm5719-llvm-c78e9a2c81147553baf2bdd5394056115b12f3b9.zip
Disable minimized symbol tables for now as this was causing test suite failures.
llvm-svn: 113372
Diffstat (limited to 'lldb/source/Plugins')
-rw-r--r--lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
index 7aad21919ff..7987d77350a 100644
--- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
+++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
@@ -206,7 +206,7 @@ ObjectFileMachO::GetSymtab()
if (m_symtab_ap.get() == NULL)
{
m_symtab_ap.reset(new Symtab(this));
- ParseSymtab (true);
+ ParseSymtab (false);
}
return m_symtab_ap.get();
}
OpenPOWER on IntegriCloud