From 76d971ccfb886e192d3d21705b1d9327d61f8827 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Fri, 18 Jun 2010 15:49:55 +0000 Subject: tree.h (record_layout_info): Change type of pending_statics field to a VEC. * tree.h (record_layout_info): Change type of pending_statics field to a VEC. * stor-layout.c (start_record_layout): Store NULL into pending_statics. (debug_rli): Call debug_vec_tree instead of debug_tree. (place_field): Likewise. (finish_record_layout): Likewise. From-SVN: r161000 --- gcc/tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree.h') diff --git a/gcc/tree.h b/gcc/tree.h index 0d8eefa..80f97ee 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -4334,7 +4334,7 @@ typedef struct record_layout_info_s tree prev_field; /* The static variables (i.e., class variables, as opposed to instance variables) encountered in T. */ - tree pending_statics; + VEC(tree,gc) *pending_statics; /* Bits remaining in the current alignment group */ int remaining_in_alignment; /* True if we've seen a packed field that didn't have normal -- cgit v1.1