diff options
author | Enrico Granata <egranata@apple.com> | 2013-03-15 18:44:08 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2013-03-15 18:44:08 +0000 |
commit | f68f73274613e2a3d14b25b22dc8ec64cacf69f8 (patch) | |
tree | 0eb783230438603454b5e2d6cb3c883d1afc4cad /lldb/source/DataFormatters/NSDictionary.cpp | |
parent | 9d7a3827e4b0d089c1ee8fe2dff269f97e5e4618 (diff) | |
download | bcm5719-llvm-f68f73274613e2a3d14b25b22dc8ec64cacf69f8.tar.gz bcm5719-llvm-f68f73274613e2a3d14b25b22dc8ec64cacf69f8.zip |
Moving CFBag and NSBundle summaries from Python to C++
Temporarily disabled non-code-running summaries for CF*Dictionary and NSCountedSet
llvm-svn: 177171
Diffstat (limited to 'lldb/source/DataFormatters/NSDictionary.cpp')
-rw-r--r-- | lldb/source/DataFormatters/NSDictionary.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/DataFormatters/NSDictionary.cpp b/lldb/source/DataFormatters/NSDictionary.cpp index 24473820670..5b1a9d85722 100644 --- a/lldb/source/DataFormatters/NSDictionary.cpp +++ b/lldb/source/DataFormatters/NSDictionary.cpp @@ -74,15 +74,15 @@ lldb_private::formatters::NSDictionarySummaryProvider (ValueObject& valobj, Stre return false; value &= (is_64bit ? ~0xFC00000000000000UL : ~0xFC000000U); } - else if (!strcmp(class_name,"__NSCFDictionary")) + /*else if (!strcmp(class_name,"__NSCFDictionary")) { Error error; - value = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr + (is_64bit ? 20 : 12), ptr_size, 0, error); + value = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr + (is_64bit ? 20 : 12), 4, 0, error); if (error.Fail()) return false; if (is_64bit) value &= ~0x0f1f000000000000UL; - } + }*/ else { if (!ExtractValueFromObjCExpression(valobj, "int", "count", value)) |