(start_init): Second arg is now a tree.

From-SVN: r4980
This commit is contained in:
Richard Stallman 1993-07-24 05:41:45 +00:00
parent 8245685d31
commit e28cae4f9c
1 changed files with 6 additions and 2 deletions

View File

@ -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;