diff options
author | Enrico Granata <egranata@apple.com> | 2013-10-07 17:59:03 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2013-10-07 17:59:03 +0000 |
commit | 41b165335030478a23174f0216e4af198a7b631b (patch) | |
tree | 63591df69b97776492c2bdb39e62afa43e9eb337 /lldb/source | |
parent | 88ff20ef2adf29f3c9038facd8883f10d7f76957 (diff) | |
download | bcm5719-llvm-41b165335030478a23174f0216e4af198a7b631b.tar.gz bcm5719-llvm-41b165335030478a23174f0216e4af198a7b631b.zip |
--raw was not always doing the right thing w.r.t. one-lining children. This checkin fixes that
llvm-svn: 192116
Diffstat (limited to 'lldb/source')
-rw-r--r-- | lldb/source/DataFormatters/ValueObjectPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/DataFormatters/ValueObjectPrinter.cpp b/lldb/source/DataFormatters/ValueObjectPrinter.cpp index 1cc10cb882a..fd53a341592 100644 --- a/lldb/source/DataFormatters/ValueObjectPrinter.cpp +++ b/lldb/source/DataFormatters/ValueObjectPrinter.cpp @@ -581,7 +581,7 @@ ValueObjectPrinter::PrintChildrenIfNeeded (bool value_printed, uint32_t curr_ptr_depth = m_ptr_depth; bool print_children = ShouldPrintChildren (is_failed_description,curr_ptr_depth); - bool print_oneline = (curr_ptr_depth > 0 || options.m_show_types) ? false : DataVisualization::ShouldPrintAsOneLiner(*m_valobj); + bool print_oneline = (curr_ptr_depth > 0 || options.m_show_types || options.m_be_raw) ? false : DataVisualization::ShouldPrintAsOneLiner(*m_valobj); if (print_children) { |