aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-10-30 19:32:16 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-10-30 19:32:16 +0000
commite717524703db25d37ebf3ae6da9d756e153f418d (patch)
tree9d78e486742912cbefb837d03c28bba34956300b /gcc/tree.c
parent6446106eb7562f91cbe48a8b746e861a73943bb0 (diff)
downloadgcc-e717524703db25d37ebf3ae6da9d756e153f418d.zip
gcc-e717524703db25d37ebf3ae6da9d756e153f418d.tar.gz
gcc-e717524703db25d37ebf3ae6da9d756e153f418d.tar.bz2
tree.c (id_string_size): Remove.
* tree.c (id_string_size): Remove. (dump_tree_statistics): Update. * toplev.c (compile_file): If dumping stats, dump tree stats too. From-SVN: r46648
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index bb78117..1912b8b 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -110,7 +110,6 @@ typedef enum
int tree_node_counts[(int) all_kinds];
int tree_node_sizes[(int) all_kinds];
-int id_string_size = 0;
static const char * const tree_node_kind_names[] = {
"decls",
@@ -4417,7 +4416,6 @@ dump_tree_statistics ()
total_nodes += tree_node_counts[i];
total_bytes += tree_node_sizes[i];
}
- fprintf (stderr, "%-20s %9d\n", "identifier names", id_string_size);
fprintf (stderr, "-------------------------------------\n");
fprintf (stderr, "%-20s %6d %9d\n", "Total", total_nodes, total_bytes);
fprintf (stderr, "-------------------------------------\n");