diff options
author | Ilia K <ki.stfu@gmail.com> | 2015-03-02 10:58:02 +0000 |
---|---|---|
committer | Ilia K <ki.stfu@gmail.com> | 2015-03-02 10:58:02 +0000 |
commit | f1115fe0c5f367b55119b129a4b0c219ae8d3c31 (patch) | |
tree | 72d90e5df9c6dfd7e46be9d1a06a7f0bf5bd9f60 /lldb | |
parent | 1ca3b832558a9843241f940fbd1ed90ec10e5f70 (diff) | |
download | llvm-f1115fe0c5f367b55119b129a4b0c219ae8d3c31.zip llvm-f1115fe0c5f367b55119b129a4b0c219ae8d3c31.tar.gz llvm-f1115fe0c5f367b55119b129a4b0c219ae8d3c31.tar.bz2 |
Rename CMIDriver::LocalDebugSessionStartupInjectCommands to CMIDriver::LocalDebugSessionStartupExecuteCommands after r230003
llvm-svn: 230944
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/tools/lldb-mi/MIDriver.cpp | 4 | ||||
-rw-r--r-- | lldb/tools/lldb-mi/MIDriver.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lldb/tools/lldb-mi/MIDriver.cpp b/lldb/tools/lldb-mi/MIDriver.cpp index 62b9e9e..481f346 100644 --- a/lldb/tools/lldb-mi/MIDriver.cpp +++ b/lldb/tools/lldb-mi/MIDriver.cpp @@ -570,7 +570,7 @@ CMIDriver::DoMainLoop(void) #if MICONFIG_ENABLE_MI_DRIVER_MI_MODE_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION if (HaveExecutableFileNamePathOnCmdLine()) { - if (!LocalDebugSessionStartupInjectCommands()) + if (!LocalDebugSessionStartupExecuteCommands()) { SetErrorDescription(MIRSRC(IDS_MI_INIT_ERR_LOCAL_DEBUG_SESSION)); return MIstatus::failure; @@ -1170,7 +1170,7 @@ CMIDriver::GetExecutableFileNamePathOnCmdLine(void) const // Throws: None. //-- bool -CMIDriver::LocalDebugSessionStartupInjectCommands(void) +CMIDriver::LocalDebugSessionStartupExecuteCommands(void) { const CMIUtilString strCmd(CMIUtilString::Format("-file-exec-and-symbols \"%s\"", m_strCmdLineArgExecuteableFileNamePath.AddSlashes().c_str())); const bool bOk = CMICmnStreamStdout::TextToStdout(strCmd); diff --git a/lldb/tools/lldb-mi/MIDriver.h b/lldb/tools/lldb-mi/MIDriver.h index 41a014b..b871ac2 100644 --- a/lldb/tools/lldb-mi/MIDriver.h +++ b/lldb/tools/lldb-mi/MIDriver.h @@ -148,7 +148,7 @@ class CMIDriver : public CMICmnBase, bool StopWorkerThreads(void); bool InitClientIDEToMIDriver(void) const; bool InitClientIDEEclipse(void) const; - bool LocalDebugSessionStartupInjectCommands(void); + bool LocalDebugSessionStartupExecuteCommands(void); // Overridden: private: |