mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-17 09:30:30 +08:00
Fix spacing in a dump in value-prof.c.
* value-prof.c (dump_histogram_value): Fix obvious spacing issue.
This commit is contained in:
parent
2db99ef789
commit
1c2755a6a6
@ -1,3 +1,8 @@
|
||||
2020-01-16 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* value-prof.c (dump_histogram_value): Fix
|
||||
obvious spacing issue.
|
||||
|
||||
2020-01-16 Andrew Pinski <apinski@marvell.com>
|
||||
|
||||
* tree-ssa-sccvn.c(vn_reference_lookup_3): Check lhs for
|
||||
|
@ -262,10 +262,10 @@ dump_histogram_value (FILE *dump_file, histogram_value hist)
|
||||
{
|
||||
fprintf (dump_file,
|
||||
(hist->type == HIST_TYPE_TOPN_VALUES
|
||||
? "Top N value counter " : "Indirect call counter"));
|
||||
? "Top N value counter" : "Indirect call counter"));
|
||||
if (hist->hvalue.counters)
|
||||
{
|
||||
fprintf (dump_file, "all: %" PRId64 ", values: ",
|
||||
fprintf (dump_file, " all: %" PRId64 ", values: ",
|
||||
(int64_t) hist->hvalue.counters[0]);
|
||||
for (unsigned i = 0; i < GCOV_TOPN_VALUES; i++)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user