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/API/SBCommandInterpreter.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/API/SBCommandInterpreter.cpp')
-rw-r--r-- | lldb/source/API/SBCommandInterpreter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/source/API/SBCommandInterpreter.cpp b/lldb/source/API/SBCommandInterpreter.cpp index c9bb8f65fa2..aa4953999b8 100644 --- a/lldb/source/API/SBCommandInterpreter.cpp +++ b/lldb/source/API/SBCommandInterpreter.cpp @@ -161,10 +161,6 @@ bool SBCommandInterpreter::IsActive() { return (IsValid() ? m_opaque_ptr->IsActive() : false); } -bool SBCommandInterpreter::WasInterrupted() const { - return (IsValid() ? m_opaque_ptr->WasInterrupted() : false); -} - const char *SBCommandInterpreter::GetIOHandlerControlSequence(char ch) { return (IsValid() ? m_opaque_ptr->GetDebugger() |