Commit 64f970fe by Toon Moene Committed by Toon Moene

re PR fortran/11301 (ICE with -fno-globals)

2003-07-09  Toon Moene  <toon@moene.indiv.nluug.nl>

	PR Fortran/11301
	* com.c (ffecom_sym_transform_): finish_decl should have
	the same last argument as start_decl.

From-SVN: r69155
parent 15e4ea18
2003-07-09 Toon Moene <toon@moene.indiv.nluug.nl>
PR Fortran/11301
* com.c (ffecom_sym_transform_): finish_decl should have
the same last argument as start_decl.
2003-07-08 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2003-07-08 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* Make-lang.in (f/g77.dvi): Use PWD_COMMAND. * Make-lang.in (f/g77.dvi): Use PWD_COMMAND.
......
...@@ -8074,7 +8074,7 @@ ffecom_sym_transform_ (ffesymbol s) ...@@ -8074,7 +8074,7 @@ ffecom_sym_transform_ (ffesymbol s)
TREE_PUBLIC (t) = 1; TREE_PUBLIC (t) = 1;
t = start_decl (t, ffe_is_globals ()); t = start_decl (t, ffe_is_globals ());
finish_decl (t, NULL_TREE, TRUE); finish_decl (t, NULL_TREE, ffe_is_globals ());
if ((g != NULL) if ((g != NULL)
&& ((ffeglobal_type (g) == FFEGLOBAL_typeSUBR) && ((ffeglobal_type (g) == FFEGLOBAL_typeSUBR)
......
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