aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2003-04-15 20:48:04 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-04-15 20:48:04 +0000
commit03907fbd21a5ba2aba1f92b53f2fb9a1d0293133 (patch)
tree2d01e031d13bdf3d289d095500ce24eac7c4d4ef /gcc/tree.c
parentc9ac9147cfe3ffb4cc530682b0f3f807d860d8a4 (diff)
downloadgcc-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 2d8e12a..09c239e 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -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. */