Commit e28cae4f by Richard Stallman

(start_init): Second arg is now a tree.

From-SVN: r4980
parent 8245685d
...@@ -5181,14 +5181,18 @@ struct initializer_stack *initializer_stack; ...@@ -5181,14 +5181,18 @@ struct initializer_stack *initializer_stack;
/* Prepare to parse and output the initializer for variable DECL. */ /* Prepare to parse and output the initializer for variable DECL. */
void void
start_init (decl, asmspec, top_level) start_init (decl, asmspec_tree, top_level)
tree decl; tree decl;
char *asmspec; tree asmspec_tree;
int top_level; int top_level;
{ {
char *locus; char *locus;
struct initializer_stack *p struct initializer_stack *p
= (struct initializer_stack *) xmalloc (sizeof (struct initializer_stack)); = (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->decl = constructor_decl;
p->asmspec = constructor_asmspec; p->asmspec = constructor_asmspec;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment