Commit 03907fbd by Geoffrey Keating Committed by Geoffrey Keating

tree.c (next_decl_uid): Mark with GTY.

	* tree.c (next_decl_uid): Mark with GTY.
	(next_type_uid): Likewise.

From-SVN: r65662
parent c9ac9147
2003-04-15 Geoffrey Keating <geoffk@apple.com>
* tree.c (next_decl_uid): Mark with GTY.
(next_type_uid): Likewise.
2003-04-15 J"orn Rennecke <joern.rennecke@superh.com>
PR target/9594:
......
......@@ -92,9 +92,9 @@ static const char * const tree_node_kind_names[] = {
#endif /* GATHER_STATISTICS */
/* Unique id for next decl created. */
static int next_decl_uid;
static GTY(()) int next_decl_uid;
/* Unique id for next type created. */
static int next_type_uid = 1;
static GTY(()) int next_type_uid = 1;
/* Since we cannot rehash a type after it is in the table, we have to
keep the hash code. */
......
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