diff options
author | Jim Ingham <jingham@apple.com> | 2017-09-28 01:39:07 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2017-09-28 01:39:07 +0000 |
commit | 8c9ecc50109ef8d0ff623f7ae4771e2fd7da1200 (patch) | |
tree | f4c6b52b8581063fb1a139706bc4cab67f3ceeb8 /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | fa1930c5060b2f2ce57b787019198da6be550ab0 (diff) | |
download | bcm5719-llvm-8c9ecc50109ef8d0ff623f7ae4771e2fd7da1200.tar.gz bcm5719-llvm-8c9ecc50109ef8d0ff623f7ae4771e2fd7da1200.zip |
Revert patch r313904, as it breaks "command source" and in
particular causes lldb to die on startup if you have a ~/.lldbinit file.
I filed:
https://bugs.llvm.org/show_bug.cgi?id=34758
to cover fixing the bug.
llvm-svn: 314371
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 4eaec5b4cea..bb1b3f8ae7d 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -2053,8 +2053,6 @@ protected: result.GetOutputStream().EOL(); result.GetOutputStream().EOL(); } - if (m_interpreter.WasInterrupted()) - break; num_dumped++; DumpModuleSymtab( m_interpreter, result.GetOutputStream(), @@ -2083,8 +2081,6 @@ protected: result.GetOutputStream().EOL(); result.GetOutputStream().EOL(); } - if (m_interpreter.WasInterrupted()) - break; num_dumped++; DumpModuleSymtab(m_interpreter, result.GetOutputStream(), module, m_options.m_sort_order); @@ -2150,8 +2146,6 @@ protected: " modules.\n", (uint64_t)num_modules); for (size_t image_idx = 0; image_idx < num_modules; ++image_idx) { - if (m_interpreter.WasInterrupted()) - break; num_dumped++; DumpModuleSections( m_interpreter, result.GetOutputStream(), @@ -2173,8 +2167,6 @@ protected: FindModulesByName(target, arg_cstr, module_list, true); if (num_matches > 0) { for (size_t i = 0; i < num_matches; ++i) { - if (m_interpreter.WasInterrupted()) - break; Module *module = module_list.GetModulePointerAtIndex(i); if (module) { num_dumped++; @@ -2247,8 +2239,6 @@ protected: " modules.\n", (uint64_t)num_modules); for (uint32_t image_idx = 0; image_idx < num_modules; ++image_idx) { - if (m_interpreter.WasInterrupted()) - break; if (DumpModuleSymbolVendor( result.GetOutputStream(), target_modules.GetModulePointerAtIndexUnlocked(image_idx))) @@ -2270,8 +2260,6 @@ protected: FindModulesByName(target, arg_cstr, module_list, true); if (num_matches > 0) { for (size_t i = 0; i < num_matches; ++i) { - if (m_interpreter.WasInterrupted()) - break; Module *module = module_list.GetModulePointerAtIndex(i); if (module) { if (DumpModuleSymbolVendor(result.GetOutputStream(), module)) @@ -2339,8 +2327,6 @@ protected: if (num_modules > 0) { uint32_t num_dumped = 0; for (uint32_t i = 0; i < num_modules; ++i) { - if (m_interpreter.WasInterrupted()) - break; if (DumpCompileUnitLineTable( m_interpreter, result.GetOutputStream(), target_modules.GetModulePointerAtIndexUnlocked(i), |