From f88b78ae374f143cca63a56b1eecf8d426045f4e Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Fri, 25 Oct 2019 11:13:12 +0200 Subject: [PATCH] Fix typo in dump_tree_statistics. 2019-10-25 Martin Liska * tree.c (dump_tree_statistics): Use sorted index 'j' and not 'i'. From-SVN: r277440 --- gcc/ChangeLog | 4 ++++ gcc/tree.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 89448b1..3601030 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-10-25 Martin Liska + + * tree.c (dump_tree_statistics): Use sorted index 'j' and not 'i'. + 2019-10-25 Richard Sandiford * tree-vect-loop.c (vectorizable_reduction): Restrict the diff --git a/gcc/tree.c b/gcc/tree.c index 2bee1d2..23fe5bf 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -9673,7 +9673,7 @@ dump_tree_statistics (void) { unsigned j = indices[i]; fprintf (stderr, "%-20s %6" PRIu64 "%c %9" PRIu64 "%c\n", - tree_node_kind_names[i], SIZE_AMOUNT (tree_node_counts[j]), + tree_node_kind_names[j], SIZE_AMOUNT (tree_node_counts[j]), SIZE_AMOUNT (tree_node_sizes[j])); total_nodes += tree_node_counts[j]; total_bytes += tree_node_sizes[j]; -- 2.7.4