aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic Chen <1108560+ddcc@users.noreply.github.com>2025-08-07 21:31:48 -0700
committerGitHub <noreply@github.com>2025-08-07 21:31:48 -0700
commit92ac1ac9046d785f5f0c68e2d9f74b05c4db5d9c (patch)
tree48f4544a798abd241885fd94b9b14e4109faf471
parentd7d0d7a80fc343750bbf85ea8c184737d9c70f62 (diff)
downloadllvm-92ac1ac9046d785f5f0c68e2d9f74b05c4db5d9c.zip
llvm-92ac1ac9046d785f5f0c68e2d9f74b05c4db5d9c.tar.gz
llvm-92ac1ac9046d785f5f0c68e2d9f74b05c4db5d9c.tar.bz2
[lldb] Fix incorrect print of UUID and load address (#152560)
The current display is missing a space, for example: ``` no target │ Locating binary: 24906A83-0182-361B-8B4A-90A249B04FD7at 0x0000000c0d108000 ``` Co-authored-by: Dominic Chen <daming_chen@apple.com>
-rw-r--r--lldb/source/Core/DynamicLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/DynamicLoader.cpp b/lldb/source/Core/DynamicLoader.cpp
index 4be9f3e..7580b15 100644
--- a/lldb/source/Core/DynamicLoader.cpp
+++ b/lldb/source/Core/DynamicLoader.cpp
@@ -211,7 +211,7 @@ ModuleSP DynamicLoader::LoadBinaryWithUUIDAndAddress(
if (uuid.IsValid())
prog_str << uuid.GetAsString();
if (value_is_offset == 0 && value != LLDB_INVALID_ADDRESS) {
- prog_str << "at 0x";
+ prog_str << " at 0x";
prog_str.PutHex64(value);
}