This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[gfortran] Patch: First constraint to R1220 and R1224



We missed that the Fortran standard requires that the end statementof a contained procedure be of the form:
END {FUNCTION|SUBROUTINE} [procedure-name]


This patch fixes this. I also had to correct a testcase along the way.

2004-06-10 Tobias Schlueter <tobias.shclueter@physik.uni-muenchen.de>

	PR fortran/14957
	* decl.c (gfc_match_end): Require END {SUBROUTINE|FUNCTION} for
	contained procedure.

testsuite/
	PR fortran/14957
	* gfortran.fortran-torture/execute/stack_varsize.f90: Correct
	syntax errors in end statements of contained subroutines.

Index: decl.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fortran/decl.c,v
retrieving revision 1.8
diff -u -p -r1.8 decl.c
--- decl.c      27 May 2004 12:35:11 -0000      1.8
+++ decl.c      10 Jun 2004 12:27:16 -0000
@@ -1876,9 +1876,15 @@ gfc_match_end (gfc_statement * st)
   if (gfc_match_eos () == MATCH_YES)
     {

+      state = gfc_current_state ();
+
       if (*st == ST_ENDIF || *st == ST_ENDDO || *st == ST_END_SELECT
          || *st == ST_END_INTERFACE || *st == ST_END_FORALL
-         || *st == ST_END_WHERE)
+         || *st == ST_END_WHERE
+         || /* A contained procedure requires END FUNCTION/SUBROUTINE.  */
+            ((state == COMP_FUNCTION || state == COMP_SUBROUTINE)
+             && gfc_state_stack->previous != NULL
+             && gfc_state_stack->previous->state == COMP_CONTAINS))
        {

gfc_error ("%s statement expected at %C",

Index: stack_varsize.f90
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gfortran.fortran-torture/execute/stack_varsize.f90,v
retrieving revision 1.2
diff -u -p -r1.2 stack_varsize.f90
--- stack_varsize.f90 13 May 2004 06:40:54 -0000 1.2
+++ stack_varsize.f90 10 Jun 2004 12:33:18 -0000
@@ -17,7 +17,7 @@ contains
k = 30
if ((a .ne. 10.0).or.(b(1) .ne. 20.0).or.(c(1) .ne. 30.0)) call abort
if ((m .ne. 10).or.(n(256,4) .ne. 20).or.(k(1,1024) .ne. 30)) call abort
- end
+ end subroutine


! Local variables defined in recursive subroutine are always put on stack.
recursive subroutine sub2 (n)
@@ -26,5 +26,5 @@ contains
if (n .ge. 1) call sub2 (n-1)
if (a(1) .ne. 42) call abort
a (1) = 0
- end
+ end subroutine
end



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]