diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-04-15 20:48:04 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-04-15 20:48:04 +0000 |
commit | 03907fbd21a5ba2aba1f92b53f2fb9a1d0293133 (patch) | |
tree | 2d01e031d13bdf3d289d095500ce24eac7c4d4ef /gcc/tree.c | |
parent | c9ac9147cfe3ffb4cc530682b0f3f807d860d8a4 (diff) | |
download | gcc-03907fbd21a5ba2aba1f92b53f2fb9a1d0293133.zip gcc-03907fbd21a5ba2aba1f92b53f2fb9a1d0293133.tar.gz gcc-03907fbd21a5ba2aba1f92b53f2fb9a1d0293133.tar.bz2 |
tree.c (next_decl_uid): Mark with GTY.
* tree.c (next_decl_uid): Mark with GTY.
(next_type_uid): Likewise.
From-SVN: r65662
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. */ |