diff options
Diffstat (limited to 'tools/lldb-mi/MICmdCmdFile.cpp')
| -rw-r--r-- | tools/lldb-mi/MICmdCmdFile.cpp | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/lldb-mi/MICmdCmdFile.cpp b/tools/lldb-mi/MICmdCmdFile.cpp index a954f88dac11..83862f24f1f1 100644 --- a/tools/lldb-mi/MICmdCmdFile.cpp +++ b/tools/lldb-mi/MICmdCmdFile.cpp @@ -20,7 +20,7 @@  //--  // Third Party Headers: -#include <lldb/API/SBStream.h> +#include "lldb/API/SBStream.h"  // In-house headers:  #include "MICmdCmdFile.h" @@ -96,7 +96,7 @@ CMICmdCmdFileExecAndSymbols::Execute(void)      CMICmdArgValFile *pArgFile = static_cast<CMICmdArgValFile *>(pArgNamedFile);      const CMIUtilString &strExeFilePath(pArgFile->GetValue());      CMICmnLLDBDebugSessionInfo &rSessionInfo(CMICmnLLDBDebugSessionInfo::Instance()); -    lldb::SBDebugger &rDbgr = rSessionInfo.m_rLldbDebugger; +    lldb::SBDebugger &rDbgr = rSessionInfo.GetDebugger();      lldb::SBError error;      const MIchar *pTargetTriple = nullptr; // Let LLDB discover the triple required      const MIchar *pTargetPlatformName = ""; @@ -137,8 +137,6 @@ CMICmdCmdFileExecAndSymbols::Execute(void)          return MIstatus::failure;      } -    rSessionInfo.m_lldbTarget = target; -      return MIstatus::success;  }  | 
