summaryrefslogtreecommitdiffstats
path: root/lldb/source/API
diff options
context:
space:
mode:
authorCaroline Tice <ctice@apple.com>2010-09-20 16:21:41 +0000
committerCaroline Tice <ctice@apple.com>2010-09-20 16:21:41 +0000
commit201a88591d2bb27d2d4b38e356254d413eff60e0 (patch)
treed8ab3e031b35d92ba5d0b8ab777d8e32a9113f96 /lldb/source/API
parentdde9cff32aee03e98a5ed91fc8425f241058c771 (diff)
downloadbcm5719-llvm-201a88591d2bb27d2d4b38e356254d413eff60e0.tar.gz
bcm5719-llvm-201a88591d2bb27d2d4b38e356254d413eff60e0.zip
Fix indentations.
llvm-svn: 114326
Diffstat (limited to 'lldb/source/API')
-rw-r--r--lldb/source/API/SBAddress.cpp4
-rw-r--r--lldb/source/API/SBBlock.cpp12
-rw-r--r--lldb/source/API/SBCompileUnit.cpp6
-rw-r--r--lldb/source/API/SBEvent.cpp6
-rw-r--r--lldb/source/API/SBFunction.cpp2
-rw-r--r--lldb/source/API/SBTarget.cpp4
6 files changed, 17 insertions, 17 deletions
diff --git a/lldb/source/API/SBAddress.cpp b/lldb/source/API/SBAddress.cpp
index bcf387f709f..0afe914e6df 100644
--- a/lldb/source/API/SBAddress.cpp
+++ b/lldb/source/API/SBAddress.cpp
@@ -141,9 +141,9 @@ bool
SBAddress::GetDescription (SBStream &description)
{
if (m_opaque_ap.get())
- {
+ {
m_opaque_ap->DumpDebug (description.get());
- }
+ }
else
description.Printf ("No value");
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");
diff --git a/lldb/source/API/SBCompileUnit.cpp b/lldb/source/API/SBCompileUnit.cpp
index 24a686d889e..9e68e28c01d 100644
--- a/lldb/source/API/SBCompileUnit.cpp
+++ b/lldb/source/API/SBCompileUnit.cpp
@@ -124,11 +124,11 @@ bool
SBCompileUnit::GetDescription (SBStream &description)
{
if (m_opaque_ptr)
- {
+ {
m_opaque_ptr->Dump (description.get(), false);
- }
+ }
else
- description.Printf ("No Value");
+ description.Printf ("No Value");
return true;
}
diff --git a/lldb/source/API/SBEvent.cpp b/lldb/source/API/SBEvent.cpp
index 0799b8bad57..d77f0020835 100644
--- a/lldb/source/API/SBEvent.cpp
+++ b/lldb/source/API/SBEvent.cpp
@@ -155,11 +155,11 @@ bool
SBEvent::GetDescription (SBStream &description)
{
if (m_opaque)
- {
+ {
m_opaque->Dump (description.get());
- }
+ }
else
- description.Printf ("No value");
+ description.Printf ("No value");
return true;
}
diff --git a/lldb/source/API/SBFunction.cpp b/lldb/source/API/SBFunction.cpp
index 210340ef249..4c5f64e23ca 100644
--- a/lldb/source/API/SBFunction.cpp
+++ b/lldb/source/API/SBFunction.cpp
@@ -72,7 +72,7 @@ SBFunction::GetDescription (SBStream &description)
m_opaque_ptr->Dump (description.get(), false);
}
else
- description.Printf ("No value");
+ description.Printf ("No value");
return true;
}
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp
index f779c33b89d..cc544db9088 100644
--- a/lldb/source/API/SBTarget.cpp
+++ b/lldb/source/API/SBTarget.cpp
@@ -506,9 +506,9 @@ bool
SBTarget::GetDescription (SBStream &description)
{
if (m_opaque_sp)
- {
+ {
m_opaque_sp->Dump (description.get());
- }
+ }
else
description.Printf ("No value");
OpenPOWER on IntegriCloud