]> gcc.gnu.org Git - gcc.git/commitdiff
re PR fortran/11301 (ICE with -fno-globals)
authorToon Moene <toon@moene.indiv.nluug.nl>
Wed, 9 Jul 2003 21:12:54 +0000 (23:12 +0200)
committerToon Moene <toon@gcc.gnu.org>
Wed, 9 Jul 2003 21:12:54 +0000 (21:12 +0000)
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

gcc/f/ChangeLog
gcc/f/com.c

index 1d4787d91c98dcd07f25ce65d4546f8de5643f4b..fc48b204915f92554fd4e8c53ac49b14bfc277af 100644 (file)
@@ -1,3 +1,9 @@
+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>
 
        * Make-lang.in (f/g77.dvi): Use PWD_COMMAND.
index 4d2860c4dcf5c4b14bb8095d769ba74a26507bf3..770daf9e37830560f16a4b5f8b84ba61cda488bb 100644 (file)
@@ -8074,7 +8074,7 @@ ffecom_sym_transform_ (ffesymbol s)
          TREE_PUBLIC (t) = 1;
 
          t = start_decl (t, ffe_is_globals ());
-         finish_decl (t, NULL_TREE, TRUE);
+         finish_decl (t, NULL_TREE, ffe_is_globals ());
 
          if ((g != NULL)
              && ((ffeglobal_type (g) == FFEGLOBAL_typeSUBR)
This page took 0.074626 seconds and 5 git commands to generate.