[Lldb-commits] [PATCH] D44081: [lldb] Add synthetic frontend for _NSCallStackArray

Davide Italiano via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 12 07:48:44 PST 2018


davide requested changes to this revision.
davide added inline comments.
This revision now requires changes to proceed.


================
Comment at: source/Plugins/Language/ObjC/NSArray.cpp:446-451
+  } else if (class_name == g_NSCallStackArray) {
+    Status error;
+    value = process_sp->ReadUnsignedIntegerFromMemory(
+        valobj_addr + 2 * ptr_size, ptr_size, 0, error);
+    if (error.Fail())
+      return false;
----------------
Can you add a comment here?
this also seems exactly the same as `NSArrayCF`, any chance we can avoid the duplication?


https://reviews.llvm.org/D44081





More information about the lldb-commits mailing list