[Lldb-commits] [lldb] [lldb] Remove limit on max memory read size (PR #105765)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 22 20:19:45 PDT 2024


================
@@ -102,7 +102,7 @@ let Definition = "target" in {
     DefaultUnsignedValue<1024>,
     Desc<"Maximum number of characters to show when using %s in summary strings.">;
   def MaxMemReadSize: Property<"max-memory-read-size", "UInt64">,
-    DefaultUnsignedValue<1024>,
+    DefaultUnsignedValue<4294967295>,
----------------
medismailben wrote:

suggestion: Either make it hex, or instead of providing a default value here, initialize the CommandOption to UINT32_MAX

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


More information about the lldb-commits mailing list