diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2010-05-05 21:32:44 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2010-05-05 21:32:44 +0000 |
commit | 507014743436b1383e17dcc42ea64cbf3a865550 (patch) | |
tree | 541f3e3edc7e4a4873031ecdbba69ae40d69cf52 /gcc/tree.h | |
parent | f0999267303330ddeac1c758917bcb3f5d77a1ce (diff) | |
download | gcc-507014743436b1383e17dcc42ea64cbf3a865550.tar.gz |
stor-layout.c (pending_sizes): Change the type to VEC(tree,gc) *.
* stor-layout.c (pending_sizes): Change the type to
VEC(tree,gc) *.
(get_pending_sizes, put_pending_size, put_pending_sizes):
Update the uses of pending_sizes.
* c-decl.c (store_parm_decls): Likewise.
* c-tree.h (struct c_arg_info): Likewise.
* tree.h: Update the prototype for get_pending_sizes and
put_pending_sizes.
From-SVN: r159085
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 0a16c0df004..4e5ef70da8b 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -4424,9 +4424,9 @@ extern tree size_diffop_loc (location_t, tree, tree); extern tree round_up_loc (location_t, tree, int); #define round_down(T,N) round_down_loc (UNKNOWN_LOCATION, T, N) extern tree round_down_loc (location_t, tree, int); -extern tree get_pending_sizes (void); +extern VEC(tree,gc) *get_pending_sizes (void); extern void put_pending_size (tree); -extern void put_pending_sizes (tree); +extern void put_pending_sizes (VEC(tree,gc) *); extern void finalize_size_functions (void); /* Type for sizes of data-type. */ |