Commit e6e81f1c by Paul Eggert Committed by Jason Merrill

* parse.y (nomods_initdcl0): Replace $<ttype>3 with $<ttype>$.

From-SVN: r52948
parent 3193c415
2002-04-30 Paul Eggert <eggert@twinsun.com>
2002-04-29 Paul Eggert <eggert@twinsun.com>
* parse.y (nomods_initdcl0): Do not move stack entries
when setting things up as initdcl0_innards expects.
* parse.y (nomods_initdcl0): Replace $<ttype>3 with $<ttype>$.
2002-04-29 Jakub Jelinek <jakub@redhat.com>
......
......@@ -2147,10 +2147,12 @@ notype_initdcl0:
;
nomods_initdcl0:
{ /* Set things up as initdcl0_innards expects. */
$<ftype>$.t = NULL_TREE;
$<ftype>$.lookups = NULL_TREE; }
notype_declarator maybeasm
{ /* Set things up as initdcl0_innards expects. */
$<ttype>$ = $2;
$2 = $1;
$<ftype>1.t = NULL_TREE;
$<ftype>1.lookups = NULL_TREE; }
initdcl0_innards
{}
| constructor_declarator maybeasm maybe_attribute
......
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