summaryrefslogtreecommitdiff
path: root/gcc/lto-streamer.h
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-11 08:24:08 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-11 08:24:08 +0000
commita0000c1f3d90165498cc8c49e9e5f293036bfc32 (patch)
tree70114f3629f27f816dff378cd14d4c31d9408cb0 /gcc/lto-streamer.h
parenta6b606a8083b326f68a121d58a06de3ca8b2fcea (diff)
downloadgcc-a0000c1f3d90165498cc8c49e9e5f293036bfc32.tar.gz
* lto-streamer.h (struct lto_streamer_cache_d): Nodes vector is in
heap. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159262 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto-streamer.h')
-rw-r--r--gcc/lto-streamer.h2
1 files changed, 1 insertions, 1 deletions
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;