diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index d184e0038d4..f82c06bcc15 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -479,8 +479,10 @@ public: if (m_option_variable.show_decl && var_sp->GetDeclaration ().GetFile()) { - var_sp->GetDeclaration ().DumpStopContext (&s, false); - s.PutCString (": "); + bool show_fullpaths = false; + bool show_module = true; + if (var_sp->DumpDeclaration(&s, show_fullpaths, show_module)) + s.PutCString (": "); } ValueObject::DumpValueObject (result.GetOutputStream(), |