tree.c (next_decl_uid): Mark with GTY.
authorGeoffrey Keating <geoffk@apple.com>
Tue, 15 Apr 2003 20:48:04 +0000 (20:48 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Tue, 15 Apr 2003 20:48:04 +0000 (20:48 +0000)
* tree.c (next_decl_uid): Mark with GTY.
(next_type_uid): Likewise.

From-SVN: r65662

gcc/ChangeLog
gcc/tree.c

index 593141ed2591314af7965a83bf703a07192e3d5a..67ef69e3656603504a8aeac92094f407d31103f3 100644 (file)
@@ -1,3 +1,8 @@
+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:
index 2d8e12a8674cd6d4efef1f14dd1c14fd6ba198d8..09c239e743f404a5adf81abc2bac19f28270fda6 100644 (file)
@@ -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.  */