re PR fortran/14957 (testsuite issues)
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
Sat, 12 Jun 2004 15:02:01 +0000 (17:02 +0200)
committerTobias Schlüter <tobi@gcc.gnu.org>
Sat, 12 Jun 2004 15:02:01 +0000 (17:02 +0200)
fortran/
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.

From-SVN: r83031

gcc/fortran/ChangeLog
gcc/fortran/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.fortran-torture/execute/stack_varsize.f90

index e7b63f7e2a9405d77c98de20dd1b720ba2f6abc0..a823c8a2a59844de4a301832de46df8ce3c512bf 100644 (file)
@@ -1,3 +1,9 @@
+2004-06-12  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       PR fortran/14957
+       * decl.c (gfc_match_end): Require END {SUBROUTINE|FUNCTION} for
+       contained procedure.
+       
 2004-06-12  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
 
        PR fortran/12841
index 69b1cfdb5c363065422257605c8b1b1cca886dc4..c6b8073edd51031388bfb91eac430ee07db4313b 100644 (file)
@@ -1875,10 +1875,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 1196f7195e960bd97d0e6aef4c6cd22737aa822b..733a53c83af051bd25fe4d9380707ff8453d9f75 100644 (file)
@@ -1,3 +1,9 @@
+2004-06-12  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       PR fortran/14957
+       * gfortran.fortran-torture/execute/stack_varsize.f90: Correct
+        syntax errors in end statements of contained subroutines. 
+       
 2004-06-12  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
 
        PR fortran/12841
index f839c8e36bc99428b936e22ef73c16bc974f97c4..6342e1a406ecf76c32d13b49f44c8c0cfb57556e 100644 (file)
@@ -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