diff options
author | Enrico Granata <egranata@apple.com> | 2013-03-14 19:00:42 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2013-03-14 19:00:42 +0000 |
commit | 86910577ccfc9da4b5d21a2d1844a4781413c80a (patch) | |
tree | 8301d26ab3bd2460c8ed65485e3ab1488a5d210b /lldb/tools/lldb-perf/lib/Xcode.cpp | |
parent | 928f65a8aaca0383d24cf036b757bc120eaebcf4 (diff) | |
download | bcm5719-llvm-86910577ccfc9da4b5d21a2d1844a4781413c80a.tar.gz bcm5719-llvm-86910577ccfc9da4b5d21a2d1844a4781413c80a.zip |
<rdar://problem/13228487>
A test case for the performance of some LLDB formatters
Changes and improvements to the testing infrastructure itself
llvm-svn: 177100
Diffstat (limited to 'lldb/tools/lldb-perf/lib/Xcode.cpp')
-rw-r--r-- | lldb/tools/lldb-perf/lib/Xcode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/lldb-perf/lib/Xcode.cpp b/lldb/tools/lldb-perf/lib/Xcode.cpp index fd2d2c4406c..730844d520f 100644 --- a/lldb/tools/lldb-perf/lib/Xcode.cpp +++ b/lldb/tools/lldb-perf/lib/Xcode.cpp @@ -32,7 +32,7 @@ Xcode::FetchVariable (SBValue value, uint32_t expand, bool verbose) auto count = value.GetNumChildren(); for (int i = 0; i < count; i++) { - SBValue child(value.GetChildAtIndex(i)); + SBValue child(value.GetChildAtIndex(i,value.IsDynamic() ? lldb::eDynamicCanRunTarget : lldb::eNoDynamicValues, true)); FetchVariable (child,expand-1,verbose); } } |