From 07e8c04c5c9fd05187e0135a6c00b55daea82410 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 8 Sep 2004 08:08:56 +0000 Subject: * vec.c (vec_p_reserve, vec_o_reserve): Rename to ... (vec_gc_p_reserve, vec_gc_o_reserve): ... here. Clone to (vec_heap_p_reserve, vec_heap_o_reserve): ... here, adjust. (vec_gc_free, vec_heap_free): New. * vec.h (DEF_VEC_GC_P, DEF_VEC_MALLOC_P): New. (DEF_VEC_P): Add allocator argument. Adjust. (DEF_VEC_GC_O, DEF_VEC_MALLOC_O): New. (DEF_VEC_O): Add allocator argument. Adjust. (VEC(free)): New. * tree.h (tree): Define a GC'd vector. * lamba-code.c (lambda_loop): Likewise. * value-prof.h (histogram_value): Likewise. * cp/cp-tree.h (tree_pair_s): Likewise. * cp/name-lookup.h (cxx_saved_binding, cp_class_binding): Likewise. * cp/semantics.c (deferred_access): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87179 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/lambda-code.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/lambda-code.c') diff --git a/gcc/lambda-code.c b/gcc/lambda-code.c index cdf04708bfb..be1195048cd 100644 --- a/gcc/lambda-code.c +++ b/gcc/lambda-code.c @@ -1406,7 +1406,7 @@ find_induction_var_from_exit_cond (struct loop *loop) return TREE_OPERAND (test, 0); } -DEF_VEC_P(lambda_loop); +DEF_VEC_GC_P(lambda_loop); /* Generate a lambda loopnest from a gcc loopnest LOOP_NEST. Return the new loop nest. INDUCTIONVARS is a pointer to an array of induction variables for the -- cgit v1.2.3