Commit 04c2288a authored by gkm's avatar gkm
Browse files

* tree.c (init_tree): Use ARRAY_SIZE.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35989 138bc75d-0d04-0410-961f-82ee72b054a4
parent 2ff1cdc4
2000-08-25 Greg McGary <greg@mcgary.org>
* tree.c (init_tree): Use ARRAY_SIZE.
2000-08-25 Gabriel Dos Reis <gdr@codesourcery.com>
* error.c (cp_tree_printer): Rework.
......
......@@ -2376,7 +2376,7 @@ init_tree ()
make_lang_type_fn = cp_make_lang_type;
lang_unsave = cp_unsave;
ggc_add_root (list_hash_table,
sizeof (list_hash_table) / sizeof (struct list_hash *),
ARRAY_SIZE (list_hash_table),
sizeof (struct list_hash *),
mark_list_hash);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment