diff options
Diffstat (limited to 'gcc/tree-iterator.c')
-rw-r--r-- | gcc/tree-iterator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-iterator.c b/gcc/tree-iterator.c index e4175fd..7de885a 100644 --- a/gcc/tree-iterator.c +++ b/gcc/tree-iterator.c @@ -31,15 +31,15 @@ along with GCC; see the file COPYING3. If not see /* This is a cache of STATEMENT_LIST nodes. We create and destroy them fairly often during gimplification. */ -static GTY ((deletable (""))) VEC(tree,gc) *stmt_list_cache; +static GTY ((deletable (""))) vec<tree, va_gc> *stmt_list_cache; tree alloc_stmt_list (void) { tree list; - if (!VEC_empty (tree, stmt_list_cache)) + if (!vec_safe_is_empty (stmt_list_cache)) { - list = VEC_pop (tree, stmt_list_cache); + list = stmt_list_cache->pop (); memset (list, 0, sizeof(struct tree_base)); TREE_SET_CODE (list, STATEMENT_LIST); } @@ -54,7 +54,7 @@ free_stmt_list (tree t) { gcc_assert (!STATEMENT_LIST_HEAD (t)); gcc_assert (!STATEMENT_LIST_TAIL (t)); - VEC_safe_push (tree, gc, stmt_list_cache, t); + vec_safe_push (stmt_list_cache, t); } /* A subroutine of append_to_statement_list{,_force}. T is not NULL. */ |