diff options
| author | Enrico Granata <granata.enrico@gmail.com> | 2011-08-15 18:01:31 +0000 |
|---|---|---|
| committer | Enrico Granata <granata.enrico@gmail.com> | 2011-08-15 18:01:31 +0000 |
| commit | 379447a7f208f36874058faee9efe56e2e6cf14a (patch) | |
| tree | 971f572432cd55b2d9e0653a42da4cae1787b80c /lldb/source/API/SBValue.cpp | |
| parent | dfd6ec3ce1e60c2ecebcdd781ec28dec1a9827da (diff) | |
| download | bcm5719-llvm-379447a7f208f36874058faee9efe56e2e6cf14a.tar.gz bcm5719-llvm-379447a7f208f36874058faee9efe56e2e6cf14a.zip | |
Refactoring of ValueObject::DumpValueObject and 'frame variable', 'target variable' commands to use an Options object instead of passing an ever-increasing number of arguments to the DumpValueObject() method, with the ultimate aim of making that call private implementation
llvm-svn: 137622
Diffstat (limited to 'lldb/source/API/SBValue.cpp')
| -rw-r--r-- | lldb/source/API/SBValue.cpp | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/lldb/source/API/SBValue.cpp b/lldb/source/API/SBValue.cpp index a7bc91d958a..a58957b9a9b 100644 --- a/lldb/source/API/SBValue.cpp +++ b/lldb/source/API/SBValue.cpp @@ -925,7 +925,7 @@ SBValue::GetDescription (SBStream &description) { if (m_opaque_sp) { - uint32_t ptr_depth = 0; + /*uint32_t ptr_depth = 0; uint32_t curr_depth = 0; uint32_t max_depth = UINT32_MAX; bool show_types = false; @@ -936,21 +936,9 @@ SBValue::GetDescription (SBStream &description) bool flat_output = false; bool use_synthetic = true; uint32_t no_summary_depth = 0; - bool ignore_cap = false; + bool ignore_cap = false;*/ ValueObject::DumpValueObject (description.ref(), - m_opaque_sp.get(), - m_opaque_sp->GetName().GetCString(), - ptr_depth, - curr_depth, - max_depth, - show_types, show_location, - use_objc, - use_dynamic, - use_synthetic, - scope_already_checked, - flat_output, - no_summary_depth, - ignore_cap); + m_opaque_sp.get()); } else description.Printf ("No value"); |

