[Lldb-commits] [lldb] [lldb][AIX] Enable NativeProcessAIX Manager for lldb-server (PR #190173)
Hemang Gadhavi via lldb-commits
lldb-commits at lists.llvm.org
Sun Apr 5 23:31:45 PDT 2026
================
@@ -134,9 +138,8 @@ llvm::Error handle_attach(GDBRemoteCommunicationServerLLGS &gdb_server,
const long int pid = strtol(attach_target.c_str(), &end_p, 10);
// We'll call it a match if the entire argument is consumed.
- if (end_p &&
- static_cast<size_t>(end_p - attach_target.c_str()) ==
- attach_target.size())
+ if (end_p && static_cast<size_t>(end_p - attach_target.c_str()) ==
+ attach_target.size())
----------------
HemangGadhavi wrote:
Sure.
https://github.com/llvm/llvm-project/pull/190173
More information about the lldb-commits
mailing list