Revert r133358 which forgoes printing of breakpoint command when doing a breakpoint list where the description

level is not eDescriptionLevelBrief.  It broke test/TestAliases.py.  Besides, to have a brief breakpoint list,
you can do "breakpoint list -b".

llvm-svn: 133455
This commit is contained in:
Johnny Chen 2011-06-20 18:59:49 +00:00
parent cd4484d25d
commit 96fda9ba1e
1 changed files with 8 additions and 0 deletions

View File

@ -309,6 +309,14 @@ BreakpointOptions::GetDescription (Stream *s, lldb::DescriptionLevel level) cons
}
}
if (m_callback_baton_sp.get())
{
if (level != eDescriptionLevelBrief)
{
s->EOL();
m_callback_baton_sp->GetDescription (s, level);
}
}
if (m_condition_ap.get())
{
if (level != eDescriptionLevelBrief)