diff options
author | Med Ismail Bennani <ismail@bennani.ma> | 2024-05-23 01:46:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 01:46:29 -0700 |
commit | ae3f68066c8f282145435880107c1d3dc26ec3b8 (patch) | |
tree | 00f2172de3259bafe16f6dcabf831ef56e9195f2 /lldb/source/Interpreter/ScriptInterpreter.cpp | |
parent | 8f50bcaadced3041a6a132286e3b62ad6fd9cf74 (diff) | |
download | llvm-ae3f68066c8f282145435880107c1d3dc26ec3b8.zip llvm-ae3f68066c8f282145435880107c1d3dc26ec3b8.tar.gz llvm-ae3f68066c8f282145435880107c1d3dc26ec3b8.tar.bz2 |
Revert "[lldb] Make use of Scripted{Python,}Interface for ScriptedThreadPlan (Reland #70392)" (#93153)
Reverts llvm/llvm-project#93149 since it breaks
https://lab.llvm.org/buildbot/#/builders/68/builds/74799
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreter.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreter.cpp b/lldb/source/Interpreter/ScriptInterpreter.cpp index 75b2a39..8dd499c 100644 --- a/lldb/source/Interpreter/ScriptInterpreter.cpp +++ b/lldb/source/Interpreter/ScriptInterpreter.cpp @@ -101,19 +101,6 @@ ScriptInterpreter::GetStatusFromSBError(const lldb::SBError &error) const { return Status(); } -Event * -ScriptInterpreter::GetOpaqueTypeFromSBEvent(const lldb::SBEvent &event) const { - return event.m_opaque_ptr; -} - -Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream( - const lldb::SBStream &stream) const { - if (stream.m_opaque_up) - return const_cast<lldb::SBStream &>(stream).m_opaque_up.get(); - - return nullptr; -} - std::optional<MemoryRegionInfo> ScriptInterpreter::GetOpaqueTypeFromSBMemoryRegionInfo( const lldb::SBMemoryRegionInfo &mem_region) const { |