summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-09-12 20:25:57 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-09-12 20:25:57 +0000
commit926d086e9bf9660df1746d142c309de98e422bdb (patch)
treeb960e1545a75ee3c27782cf974e1476d13641732
parent7c5dc122a0287c1c6a7c3ae6b04d7e4c03d07c1d (diff)
downloadbcm5719-llvm-926d086e9bf9660df1746d142c309de98e422bdb.tar.gz
bcm5719-llvm-926d086e9bf9660df1746d142c309de98e422bdb.zip
Fix indentations, add some comments.
llvm-svn: 139534
-rw-r--r--lldb/source/Commands/CommandObjectFrame.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp
index 58a262a4d59..235ecfd958f 100644
--- a/lldb/source/Commands/CommandObjectFrame.cpp
+++ b/lldb/source/Commands/CommandObjectFrame.cpp
@@ -499,10 +499,10 @@ public:
uint32_t expr_path_options = StackFrame::eExpressionPathOptionCheckPtrVsMember;
lldb::VariableSP var_sp;
valobj_sp = frame_sp->GetValueForVariableExpressionPath (name_cstr,
- m_varobj_options.use_dynamic,
- expr_path_options,
- var_sp,
- error);
+ m_varobj_options.use_dynamic,
+ expr_path_options,
+ var_sp,
+ error);
if (valobj_sp)
{
if (m_option_variable.format != eFormatDefault)
@@ -530,7 +530,7 @@ public:
}
}
}
- else
+ else // No command arg specified. Use variable_list, instead.
{
const uint32_t num_variables = variable_list->GetSize();
OpenPOWER on IntegriCloud