https://github.com/kastiglione created 
https://github.com/llvm/llvm-project/pull/178717

None

>From 1553d1aaac0fb40c49cedbf141612bf816534cd0 Mon Sep 17 00:00:00 2001
From: Dave Lee <[email protected]>
Date: Thu, 29 Jan 2026 10:16:15 -0800
Subject: [PATCH] [lldb] Increment max-children-depth to 5

---
 lldb/source/Target/TargetProperties.td              |  2 +-
 .../Shell/Settings/TestChildDepthTruncation.test    | 13 ++++++++-----
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/lldb/source/Target/TargetProperties.td 
b/lldb/source/Target/TargetProperties.td
index e6cd48a9d3dad6..b8ac3660fb2d7b 100644
--- a/lldb/source/Target/TargetProperties.td
+++ b/lldb/source/Target/TargetProperties.td
@@ -99,7 +99,7 @@ let Definition = "target" in {
     DefaultUnsignedValue<24>,
     Desc<"Maximum number of children to expand in any level of depth.">;
   def MaxChildrenDepth: Property<"max-children-depth", "UInt64">,
-    DefaultUnsignedValue<4>,
+    DefaultUnsignedValue<5>,
     Desc<"Maximum depth to expand children.">;
   def MaxSummaryLength: Property<"max-string-summary-length", "UInt64">,
     DefaultUnsignedValue<1024>,
diff --git a/lldb/test/Shell/Settings/TestChildDepthTruncation.test 
b/lldb/test/Shell/Settings/TestChildDepthTruncation.test
index 7e4fbbef9e4582..b09f98ebd1a5a2 100644
--- a/lldb/test/Shell/Settings/TestChildDepthTruncation.test
+++ b/lldb/test/Shell/Settings/TestChildDepthTruncation.test
@@ -18,15 +18,18 @@
 #--- main.cpp
 
 struct L1 {
-    int w;
+    int a;
     struct L2 {
-        int x;
+        int b;
         struct L3 {
-            int y;
+            int c;
             struct L4 {
-              int z;
+                int d;
                 struct L5 {
-                  int a;
+                    int e;
+                    struct L6 {
+                      int f;
+                    } l6;
                 } l5;
             } l4;
         } l3;

_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to