forked from OSchip/llvm-project
For Dump(Stream *s), use GetOptionsNoCreate()->GetIgnoreCount() and fix the indentation.
llvm-svn: 149002
This commit is contained in:
parent
0c859d67ef
commit
9ec3c4f5a7
|
@ -414,12 +414,12 @@ BreakpointLocation::Dump(Stream *s) const
|
|||
|
||||
s->Printf("BreakpointLocation %u: tid = %4.4llx load addr = 0x%8.8llx state = %s type = %s breakpoint "
|
||||
"hw_index = %i hit_count = %-4u ignore_count = %-4u",
|
||||
GetID(),
|
||||
GetOptionsNoCreate()->GetThreadSpecNoCreate()->GetTID(),
|
||||
(uint64_t) m_address.GetOpcodeLoadAddress (&m_owner.GetTarget()),
|
||||
(m_options_ap.get() ? m_options_ap->IsEnabled() : m_owner.IsEnabled()) ? "enabled " : "disabled",
|
||||
IsHardware() ? "hardware" : "software",
|
||||
GetHardwareIndex(),
|
||||
GetHitCount(),
|
||||
m_options_ap.get() ? m_options_ap->GetIgnoreCount() : m_owner.GetIgnoreCount());
|
||||
GetID(),
|
||||
GetOptionsNoCreate()->GetThreadSpecNoCreate()->GetTID(),
|
||||
(uint64_t) m_address.GetOpcodeLoadAddress (&m_owner.GetTarget()),
|
||||
(m_options_ap.get() ? m_options_ap->IsEnabled() : m_owner.IsEnabled()) ? "enabled " : "disabled",
|
||||
IsHardware() ? "hardware" : "software",
|
||||
GetHardwareIndex(),
|
||||
GetHitCount(),
|
||||
GetOptionsNoCreate()->GetIgnoreCount());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue