Report the summed hit count in the breakpoint line.

<rdar://problem/15183226>

llvm-svn: 192518
This commit is contained in:
Jim Ingham 2013-10-12 00:40:02 +00:00
parent 4c4b69c9c8
commit 05d7084ce9
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ Breakpoint::GetDescription (Stream *s, lldb::DescriptionLevel level, bool show_l
{
s->Printf(", locations = %" PRIu64, (uint64_t)num_locations);
if (num_resolved_locations > 0)
s->Printf(", resolved = %" PRIu64, (uint64_t)num_resolved_locations);
s->Printf(", resolved = %" PRIu64 ", hit count = %d", (uint64_t)num_resolved_locations, GetHitCount());
}
else
{