diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-04-26 20:03:22 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-04-26 20:03:22 +0000 |
commit | f20dd1d5a6220c867922d846f54c247a15c18216 (patch) | |
tree | 352bf858ec9282cd35c665a03b4abfdfc0f548b0 /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 228ccd675484038df21d68b8178bbd56a00be56a (diff) | |
download | bcm5719-llvm-f20dd1d5a6220c867922d846f54c247a15c18216.tar.gz bcm5719-llvm-f20dd1d5a6220c867922d846f54c247a15c18216.zip |
[CommandInterpreter] Remove scripting language argument. (NFC)
The script language argument was passed from the debugger to the command
interpreter, only to call SetScriptLanguage on the debugger again. It
wasn't even used to initialize the script interpreter, because that
would query the debugger again. This patch removes the needless back and
forth.
llvm-svn: 359346
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 84707156871..35596c86435 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -122,7 +122,6 @@ ConstString &CommandInterpreter::GetStaticBroadcasterClass() { } CommandInterpreter::CommandInterpreter(Debugger &debugger, - ScriptLanguage script_language, bool synchronous_execution) : Broadcaster(debugger.GetBroadcasterManager(), CommandInterpreter::GetStaticBroadcasterClass().AsCString()), @@ -135,7 +134,6 @@ CommandInterpreter::CommandInterpreter(Debugger &debugger, m_batch_command_mode(false), m_truncation_warning(eNoTruncation), m_command_source_depth(0), m_num_errors(0), m_quit_requested(false), m_stopped_for_crash(false) { - debugger.SetScriptLanguage(script_language); SetEventName(eBroadcastBitThreadShouldExit, "thread-should-exit"); SetEventName(eBroadcastBitResetPrompt, "reset-prompt"); SetEventName(eBroadcastBitQuitCommandReceived, "quit"); |