diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2022-09-19 10:47:09 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2022-09-19 14:43:31 -0700 |
commit | 70599d70273b671b1b2e6a0e0b9c11e413209647 (patch) | |
tree | 2868dfff6c1a64e576d001efc8aa0731bde242e2 /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | 2e8817b90a9aa38c681ca1bb9075f9e8eed3f6e8 (diff) | |
download | llvm-70599d70273b671b1b2e6a0e0b9c11e413209647.zip llvm-70599d70273b671b1b2e6a0e0b9c11e413209647.tar.gz llvm-70599d70273b671b1b2e6a0e0b9c11e413209647.tar.bz2 |
[lldb] Remove LLDB reproducers
This patch removes the remaining reproducer code. The SBReproducer class
remains for ABI stability but is just an empty shell. This completes the
removal process outlined on the mailing list [1].
[1] https://lists.llvm.org/pipermail/lldb-dev/2021-September/017045.html
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index 97a8833..3d4893d 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -891,7 +891,7 @@ protected: llvm::StringRef(), // Continuation prompt multiple_lines, color_prompt, 0, // Don't show line numbers - *this, nullptr)); + *this)); if (io_handler_sp) { debugger.RunIOHandlerAsync(io_handler_sp); |