https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/222285
None >From 1f3db994e5c3d2571f50d907655639d74530c5ae Mon Sep 17 00:00:00 2001 From: David Spickett <[email protected]> Date: Wed, 9 Sep 2026 09:55:35 +0000 Subject: [PATCH] [lldb][lldb-server] Log possible breakpoint PC in hex --- lldb/source/Host/common/NativeProcessProtocol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Host/common/NativeProcessProtocol.cpp b/lldb/source/Host/common/NativeProcessProtocol.cpp index 7194dab19d012..a29972e1b67e0 100644 --- a/lldb/source/Host/common/NativeProcessProtocol.cpp +++ b/lldb/source/Host/common/NativeProcessProtocol.cpp @@ -619,7 +619,7 @@ void NativeProcessProtocol::FixupBreakpointPCAsNeeded( // We didn't find one at a software probe location. Nothing to do. LLDB_LOG(log, "pid {0} no lldb software breakpoint found at current pc with " - "adjustment: {1}", + "adjustment: {1:x}", GetID(), breakpoint_addr); return; } _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
