summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBBlock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/API/SBBlock.cpp')
-rw-r--r--lldb/source/API/SBBlock.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lldb/source/API/SBBlock.cpp b/lldb/source/API/SBBlock.cpp
index 5d6172b6122..02db9b2237a 100644
--- a/lldb/source/API/SBBlock.cpp
+++ b/lldb/source/API/SBBlock.cpp
@@ -138,21 +138,21 @@ bool
SBBlock::GetDescription (SBStream &description)
{
if (m_opaque_ptr)
- {
+ {
lldb::user_id_t id = m_opaque_ptr->GetID();
description.Printf ("Block: {id: %d} ", id);
if (IsInlined())
- {
+ {
description.Printf (" (inlined, '%s') ", GetInlinedName());
- }
+ }
lldb_private::SymbolContext sc;
m_opaque_ptr->CalculateSymbolContext (&sc);
if (sc.function)
- {
+ {
m_opaque_ptr->DumpAddressRanges (description.get(),
sc.function->GetAddressRange().GetBaseAddress().GetFileAddress());
- }
- }
+ }
+ }
else
description.Printf ("No value");
OpenPOWER on IntegriCloud