mirror of
https://github.com/intel/llvm.git
synced 2026-01-14 20:10:50 +08:00
Fix indentations.
llvm-svn: 114326
This commit is contained in:
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user