decl.c (grokparms): Don't bash a permanent list node if we're in a function.

* decl.c (grokparms): Don't bash a permanent list node if we're
	in a function.

From-SVN: r15516
This commit is contained in:
Jason Merrill 1997-09-17 18:18:09 +00:00 committed by Jason Merrill
parent 8552680f15
commit 66f2e88dd6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Sep 17 10:31:25 1997 Jason Merrill <jason@yorick.cygnus.com>
* decl.c (grokparms): Don't bash a permanent list node if we're
in a function.
1997-09-17 Brendan Kehoe <brendan@lisa.cygnus.com>
* Makefile.in (CONFLICTS): Fix s/r conflict count to 18.

View File

@ -10040,7 +10040,7 @@ grokparms (first_parm, funcdef_flag)
TREE_CHAIN (last_decl) = decl;
last_decl = decl;
}
if (TREE_PERMANENT (list_node))
if (! current_function_decl && TREE_PERMANENT (list_node))
{
TREE_PURPOSE (list_node) = init;
TREE_VALUE (list_node) = type;