From: Martin Liska Date: Fri, 25 Oct 2019 09:13:12 +0000 (+0200) Subject: Fix typo in dump_tree_statistics. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f88b78ae374f143cca63a56b1eecf8d426045f4e;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 89448b1166a..3601030bca8 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 2bee1d255ff..23fe5bffd37 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];