diff options
author | Kazuaki Ishizaki <ishizaki@jp.ibm.com> | 2020-04-07 01:06:02 +0900 |
---|---|---|
committer | Kazuaki Ishizaki <ishizaki@jp.ibm.com> | 2020-04-07 01:06:16 +0900 |
commit | e9264b746b81a63323d884ea07b2ebfbb660d004 (patch) | |
tree | 6f3500aebd252120ccdd60c484dce0ac76eb45fb /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | ad08ecbd16854ec85809280f3db491aee0317423 (diff) | |
download | llvm-e9264b746b81a63323d884ea07b2ebfbb660d004.zip llvm-e9264b746b81a63323d884ea07b2ebfbb660d004.tar.gz llvm-e9264b746b81a63323d884ea07b2ebfbb660d004.tar.bz2 |
[lldb] NFC: Fix trivial typo in comments, documents, and messages
Differential Revision: https://reviews.llvm.org/D77460
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 618ed7c..d2e7f4d 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -3791,7 +3791,7 @@ thread_result_t ProcessGDBRemote::AsyncThread(void *arg) { } // switch(stop_state) } // else // if in All-stop-mode } // if (continue_packet) - } // case eBroadcastBitAysncContinue + } // case eBroadcastBitAsyncContinue break; case eBroadcastBitAsyncThreadShouldExit: @@ -4682,7 +4682,7 @@ llvm::Expected<LoadedModuleInfoList> ProcessGDBRemote::GetLoadedModuleList() { // value. module.set_base_is_offset(true); } else if (name == "l_ld") { - // the memory address of the libraries PT_DYAMIC section. + // the memory address of the libraries PT_DYNAMIC section. module.set_dynamic(StringConvert::ToUInt64( value.data(), LLDB_INVALID_ADDRESS, 0)); } |