From: Richard Stallman Date: Sat, 24 Jul 1993 05:41:45 +0000 (+0000) Subject: (start_init): Second arg is now a tree. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e28cae4f9c4c30a0f303ab58092215a100adcc91;p=gcc.git (start_init): Second arg is now a tree. From-SVN: r4980 --- diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 5ad4a2a02f2..f8702e2cc6b 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -5181,14 +5181,18 @@ struct initializer_stack *initializer_stack; /* Prepare to parse and output the initializer for variable DECL. */ void -start_init (decl, asmspec, top_level) +start_init (decl, asmspec_tree, top_level) tree decl; - char *asmspec; + tree asmspec_tree; int top_level; { char *locus; struct initializer_stack *p = (struct initializer_stack *) xmalloc (sizeof (struct initializer_stack)); + char *asmspec = 0; + + if (asmspec_tree) + asmspec = TREE_STRING_POINTER (asmspec_tree); p->decl = constructor_decl; p->asmspec = constructor_asmspec;