diff options
author | Daniel Thornburgh <dthorn@google.com> | 2024-05-22 15:56:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 13:56:33 -0700 |
commit | c93a67038dcc1adeafa74e105fba02714732097a (patch) | |
tree | fd3b5df20ee06ff810d7632757b6c68281c14e95 /lldb/source/API/SBDebugger.cpp | |
parent | 1529ec085a31e60fa4de0bed27a5ba88b1a7d7fa (diff) | |
download | llvm-c93a67038dcc1adeafa74e105fba02714732097a.zip llvm-c93a67038dcc1adeafa74e105fba02714732097a.tar.gz llvm-c93a67038dcc1adeafa74e105fba02714732097a.tar.bz2 |
Revert "[lldb] Added Debuginfod tests and fixed a couple issues" (#93094)
Reverts llvm/llvm-project#92572 due to Fuchsia CI breakages (using CLI
tools in tests that weren't necessarily built).
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r-- | lldb/source/API/SBDebugger.cpp | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index 6e19a68..7ef0d6e 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -776,9 +776,6 @@ SBStructuredData SBDebugger::GetBuildConfiguration() { *config_up, "xml", XMLDocument::XMLEnabled(), "A boolean value that indicates if XML support is enabled in LLDB"); AddBoolConfigEntry( - *config_up, "curl", LLVM_ENABLE_CURL, - "A boolean value that indicates if CURL support is enabled in LLDB"); - AddBoolConfigEntry( *config_up, "curses", LLDB_ENABLE_CURSES, "A boolean value that indicates if curses support is enabled in LLDB"); AddBoolConfigEntry( @@ -1727,20 +1724,20 @@ SBDebugger::LoadTraceFromFile(SBError &error, void SBDebugger::RequestInterrupt() { LLDB_INSTRUMENT_VA(this); - + if (m_opaque_sp) - m_opaque_sp->RequestInterrupt(); + m_opaque_sp->RequestInterrupt(); } void SBDebugger::CancelInterruptRequest() { LLDB_INSTRUMENT_VA(this); - + if (m_opaque_sp) - m_opaque_sp->CancelInterruptRequest(); + m_opaque_sp->CancelInterruptRequest(); } bool SBDebugger::InterruptRequested() { LLDB_INSTRUMENT_VA(this); - + if (m_opaque_sp) return m_opaque_sp->InterruptRequested(); return false; |