forked from OSchip/llvm-project
Fix a couple of typo's in breakpoint descriptions.
llvm-svn: 202782
This commit is contained in:
parent
6dfd4e156b
commit
8f63266569
|
@ -541,7 +541,7 @@ Breakpoint::GetDescription (Stream *s, lldb::DescriptionLevel level, bool show_l
|
|||
|
||||
if (!m_kind_description.empty())
|
||||
{
|
||||
if (eDescriptionLevelBrief)
|
||||
if (level == eDescriptionLevelBrief)
|
||||
{
|
||||
s->PutCString (GetBreakpointKind());
|
||||
return;
|
||||
|
|
|
@ -626,7 +626,7 @@ BreakpointLocation::GetDescription (Stream *s, lldb::DescriptionLevel level)
|
|||
if (exe_scope == NULL)
|
||||
exe_scope = target;
|
||||
|
||||
if (eDescriptionLevelInitial)
|
||||
if (level == eDescriptionLevelInitial)
|
||||
m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, Address::DumpStyleFileAddress);
|
||||
else
|
||||
m_address.Dump(s, exe_scope, Address::DumpStyleLoadAddress, Address::DumpStyleModuleWithFileAddress);
|
||||
|
|
Loading…
Reference in New Issue