re PR fortran/69498 (ICE on disjunct cases with displaced or incomplete embedded...
authorNicolas Koenig <koenigni@student.ethz.ch>
Mon, 10 Apr 2017 20:58:21 +0000 (22:58 +0200)
committerNicolas Koenig <koenigni@gcc.gnu.org>
Mon, 10 Apr 2017 20:58:21 +0000 (20:58 +0000)
2017-04-10  Nicolas Koenig  <koenigni@student.ethz.ch>
            Paul Thomas  <pault@gcc.gnu.org>

PR fortran/69498
* module.c (gfc_match_submodule): Add error
if function is called in the wrong state.

2017-04-10  Nicolas Koenig  <koenigni@student.ethz.ch>

PR fortran/69498
* gfortran.dg/submodule_unexp.f90: Modified test
to account for new error.
* gfortran.dg/submodule_twice.f90: New Test

Co-Authored-By: Paul Thomas <pault@gcc.gnu.org>
From-SVN: r246826

gcc/fortran/ChangeLog
gcc/fortran/module.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/submodule_twice.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/submodule_unexp.f90

index 7825295..9f31ad9 100644 (file)
@@ -1,3 +1,11 @@
+
+2017-04-10  Nicolas Koenig  <koenigni@student.ethz.ch>
+            Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/69498 
+       * module.c (gfc_match_submodule): Add error
+       if function is called in the wrong state.
+
 2017-04-10  Janus Weil  <janus@gcc.gnu.org>
 
        PR fortran/80046
index 60adde3..28b8ea1 100644 (file)
@@ -741,6 +741,13 @@ gfc_match_submodule (void)
   if (!gfc_notify_std (GFC_STD_F2008, "SUBMODULE declaration at %C"))
     return MATCH_ERROR;
 
+  if (gfc_current_state () != COMP_NONE)
+    {
+      gfc_error ("SUBMODULE declaration at %C cannot appear within "
+                "another scoping unit");
+      return MATCH_ERROR;
+    }
+
   gfc_new_block = NULL;
   gcc_assert (module_list == NULL);
 
index 746150b..2104392 100644 (file)
@@ -1,3 +1,10 @@
+2017-04-10  Nicolas Koenig  <koenigni@student.ethz.ch>
+
+       PR fortran/69498 
+       * gfortran.dg/submodule_unexp.f90: Modified test
+       to account for new error.
+       * gfortran.dg/submodule_twice.f90: New Test
+
 2017-04-10  Jakub Jelinek  <jakub@redhat.com>
 
        PR c++/80176
diff --git a/gcc/testsuite/gfortran.dg/submodule_twice.f90 b/gcc/testsuite/gfortran.dg/submodule_twice.f90
new file mode 100644 (file)
index 0000000..fdb4dcb
--- /dev/null
@@ -0,0 +1,7 @@
+! { dg-do compile }
+! PR fortran/69498
+! This used to ICE
+program main
+    submodule (m) sm ! { dg-error "SUBMODULE declaration at" }
+    submodule (m2) sm2  ! { dg-error "SUBMODULE declaration at" }
+end program
index 43a0553..39b57a5 100644 (file)
@@ -3,6 +3,6 @@
 ! This used to ICE
 program p
    type t
-   submodule (m) sm ! { dg-error "Unexpected SUBMODULE statement at" }
+   submodule (m) sm ! { dg-error "SUBMODULE declaration at" }
    end type
 end