[Lldb-commits] [lldb] 6e3faae - [lldb/Lua] Remove redundant variable (NFC)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Sat Jun 20 23:28:41 PDT 2020


Author: Jonas Devlieghere
Date: 2020-06-20T23:28:22-07:00
New Revision: 6e3faaeb44bdcb42f059fa68eec1687c0f903a58

URL: https://github.com/llvm/llvm-project/commit/6e3faaeb44bdcb42f059fa68eec1687c0f903a58
DIFF: https://github.com/llvm/llvm-project/commit/6e3faaeb44bdcb42f059fa68eec1687c0f903a58.diff

LOG: [lldb/Lua] Remove redundant variable (NFC)

Added: 
    

Modified: 
    lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
index bcb33ae8c376..cbd639417990 100644
--- a/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
+++ b/lldb/source/Plugins/ScriptInterpreter/Lua/ScriptInterpreterLua.cpp
@@ -70,19 +70,16 @@ void ScriptInterpreterLua::ExecuteInterpreterLoop() {
   static Timer::Category func_cat(LLVM_PRETTY_FUNCTION);
   Timer scoped_timer(func_cat, LLVM_PRETTY_FUNCTION);
 
-  Debugger &debugger = m_debugger;
-
   // At the moment, the only time the debugger does not have an input file
   // handle is when this is called directly from lua, in which case it is
   // both dangerous and unnecessary (not to mention confusing) to try to embed
   // a running interpreter loop inside the already running lua interpreter
   // loop, so we won't do it.
-
-  if (!debugger.GetInputFile().IsValid())
+  if (!m_debugger.GetInputFile().IsValid())
     return;
 
-  IOHandlerSP io_handler_sp(new IOHandlerLuaInterpreter(debugger, *this));
-  debugger.RunIOHandlerAsync(io_handler_sp);
+  IOHandlerSP io_handler_sp(new IOHandlerLuaInterpreter(m_debugger, *this));
+  m_debugger.RunIOHandlerAsync(io_handler_sp);
 }
 
 bool ScriptInterpreterLua::LoadScriptingModule(


        


More information about the lldb-commits mailing list