Commit b819d9e0 by Paul Eggert Committed by Nathan Sidwell

parse.y (nomods_initdcl0): Do not move stack entries when setting things up as…

parse.y (nomods_initdcl0): Do not move stack entries when setting things up as initdcl0_innards expects.

	* parse.y (nomods_initdcl0): Do not move stack entries
	when setting things up as initdcl0_innards expects.

From-SVN: r52939
parent 8e44e77e
2002-04-30 Paul Eggert <eggert@twinsun.com>
* parse.y (nomods_initdcl0): Do not move stack entries
when setting things up as initdcl0_innards expects.
2002-04-29 Jakub Jelinek <jakub@redhat.com>
PR c++/6477
......
......@@ -2147,12 +2147,10 @@ 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>3 = $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