Commit 979aeb33 by Jan Hubicka Committed by Jan Hubicka

lto-streamer.h (struct lto_streamer_cache_d): Nodes vector is in heap.


	* lto-streamer.h (struct lto_streamer_cache_d): Nodes vector is in
	heap.

From-SVN: r159262
parent cc56d170
......@@ -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 <jh@suse.cz>
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment