diff options
author | Michał Górny <mgorny@moritz.systems> | 2021-09-27 12:22:31 +0200 |
---|---|---|
committer | Michał Górny <mgorny@moritz.systems> | 2021-10-22 12:27:46 +0200 |
commit | 66e06cc8cba3c39c760082a8ed469b5292f9ee67 (patch) | |
tree | a2afa37a99ff5109a16be7adf72e005659b2cbd0 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | |
parent | d46531567919f51ee2d165ca3dcd79c9c29eb205 (diff) | |
download | llvm-66e06cc8cba3c39c760082a8ed469b5292f9ee67.zip llvm-66e06cc8cba3c39c760082a8ed469b5292f9ee67.tar.gz llvm-66e06cc8cba3c39c760082a8ed469b5292f9ee67.tar.bz2 |
[llvm] [ADT] Update llvm::Split() per Pavel Labath's suggestions
Optimize the iterator comparison logic to compare Current.data()
pointers. Use std::tie for assignments from std::pair. Replace
the custom class with a function returning iterator_range.
Differential Revision: https://reviews.llvm.org/D110535
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp index 8a86734..2080e09 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp @@ -3637,7 +3637,7 @@ GDBRemoteCommunicationServerLLGS::Handle_qSaveCore( StringRef packet_str{packet.GetStringRef()}; assert(packet_str.startswith("qSaveCore")); if (packet_str.consume_front("qSaveCore;")) { - for (auto x : llvm::Split(packet_str, ';')) { + for (auto x : llvm::split(packet_str, ';')) { if (x.consume_front("path-hint:")) StringExtractor(x).GetHexByteString(path_hint); else |