diff options
Diffstat (limited to 'gcc/tree-streamer.c')
-rw-r--r-- | gcc/tree-streamer.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/tree-streamer.c b/gcc/tree-streamer.c index f7c1517..1f4fe96 100644 --- a/gcc/tree-streamer.c +++ b/gcc/tree-streamer.c @@ -232,20 +232,6 @@ streamer_tree_cache_lookup (struct streamer_tree_cache_d *cache, tree t, } -/* Return the tree node at slot IX in CACHE. */ - -tree -streamer_tree_cache_get (struct streamer_tree_cache_d *cache, unsigned ix) -{ - gcc_assert (cache); - - /* Make sure we're not requesting something we don't have. */ - gcc_assert (ix < VEC_length (tree, cache->nodes)); - - return VEC_index (tree, cache->nodes, ix); -} - - /* Record NODE in CACHE. */ static void |