aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2020-01-16 14:33:08 +0100
committerMartin Liska <mliska@suse.cz>2020-01-16 14:33:08 +0100
commit1c2755a6a6bfff1402520448aae2a4cd4c6085f9 (patch)
treee10741fb0f769ec0849cb8a49584055ea6a7c52e /gcc
parent2db99ef7896914bfbca1adc40f6ac4ba8887f040 (diff)
downloadgcc-1c2755a6a6bfff1402520448aae2a4cd4c6085f9.zip
gcc-1c2755a6a6bfff1402520448aae2a4cd4c6085f9.tar.gz
gcc-1c2755a6a6bfff1402520448aae2a4cd4c6085f9.tar.bz2
Fix spacing in a dump in value-prof.c.
* value-prof.c (dump_histogram_value): Fix obvious spacing issue.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/value-prof.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7baf474..9a94998 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/value-prof.c b/gcc/value-prof.c
index 9a2c462..b7c7d7e 100644
--- a/gcc/value-prof.c
+++ b/gcc/value-prof.c
@@ -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++)
{