diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-15 20:48:04 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-15 20:48:04 +0000 |
commit | f61c54610a159d1945a9e092d960e883c0324c0c (patch) | |
tree | 2d01e031d13bdf3d289d095500ce24eac7c4d4ef /gcc/tree.c | |
parent | ca3ccdf659614279fe6748b24210dc3310b716bd (diff) | |
download | gcc-f61c54610a159d1945a9e092d960e883c0324c0c.tar.gz |
* tree.c (next_decl_uid): Mark with GTY.
(next_type_uid): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65662 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.c b/gcc/tree.c index 2d8e12a8674..09c239e743f 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. */ |