[Lldb-commits] [lldb] [lldb][AIX] Enable NativeProcessAIX Manager for lldb-server (PR #190173)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 2 09:36:33 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())
----------------
DavidSpickett wrote:

Yeah if clang-format is doing this, just remove the change and we'll ignore the CI formatter.

We only care about the format of new code, but sometimes it gets overzealous.

https://github.com/llvm/llvm-project/pull/190173


More information about the lldb-commits mailing list