aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-tree.h
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2010-05-05 21:32:44 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2010-05-05 21:32:44 +0000
commit507014743436b1383e17dcc42ea64cbf3a865550 (patch)
tree541f3e3edc7e4a4873031ecdbba69ae40d69cf52 /gcc/c-tree.h
parentf0999267303330ddeac1c758917bcb3f5d77a1ce (diff)
downloadgcc-507014743436b1383e17dcc42ea64cbf3a865550.zip
gcc-507014743436b1383e17dcc42ea64cbf3a865550.tar.gz
gcc-507014743436b1383e17dcc42ea64cbf3a865550.tar.bz2
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/c-tree.h')
-rw-r--r--gcc/c-tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h
index 50ed9db..3090a67 100644
--- a/gcc/c-tree.h
+++ b/gcc/c-tree.h
@@ -306,11 +306,11 @@ struct c_arg_info {
/* A list of non-parameter decls (notably enumeration constants)
defined with the parameters. */
tree others;
- /* A list of VLA sizes from the parameters. In a function
+ /* A VEC of VLA sizes from the parameters. In a function
definition, these are used to ensure that side-effects in sizes
of arrays converted to pointers (such as a parameter int i[n++])
take place; otherwise, they are ignored. */
- tree pending_sizes;
+ VEC(tree,gc) *pending_sizes;
/* True when these arguments had [*]. */
BOOL_BITFIELD had_vla_unspec : 1;
};