diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 86c8e674383..1fd3e791561 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -2,7 +2,8 @@ * lto-streamer.c (lto_streamer_cache_add_to_node_array, lto_streamer_cache_delete): Put nodes into heap. - (struct lto_streamer_cache_d): Nodes vector is in heap. + * lto-streamer.h (struct lto_streamer_cache_d): Nodes vector is in + heap. 2010-05-11 Jan Hubicka diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h index 65e2b3f4c75..e11da75b3fe 100644 --- a/gcc/lto-streamer.h +++ b/gcc/lto-streamer.h @@ -354,7 +354,7 @@ struct lto_streamer_cache_d unsigned next_slot; /* The nodes pickled so far. */ - VEC(tree,gc) *nodes; + VEC(tree,heap) *nodes; /* Offset into the stream where the nodes have been written. */ VEC(unsigned,heap) *offsets;