diff options
author | Jim Ingham <jingham@apple.com> | 2013-10-12 00:40:02 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-10-12 00:40:02 +0000 |
commit | 05d7084ce9f8087ff3035412d5e3e1c790ec484d (patch) | |
tree | 0934e903a85a1bb4b9fc10b685b79fcea330ba08 /lldb/source | |
parent | 4c4b69c9c8c4f5105e429e95f3ca382bdcc394ed (diff) | |
download | bcm5719-llvm-05d7084ce9f8087ff3035412d5e3e1c790ec484d.tar.gz bcm5719-llvm-05d7084ce9f8087ff3035412d5e3e1c790ec484d.zip |
Report the summed hit count in the breakpoint line.
<rdar://problem/15183226>
llvm-svn: 192518
Diffstat (limited to 'lldb/source')
-rw-r--r-- | lldb/source/Breakpoint/Breakpoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Breakpoint/Breakpoint.cpp b/lldb/source/Breakpoint/Breakpoint.cpp index 56a70666615..e07205e360b 100644 --- a/lldb/source/Breakpoint/Breakpoint.cpp +++ b/lldb/source/Breakpoint/Breakpoint.cpp @@ -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 { |