aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNicolas Koenig <koenigni@student.ethz.ch>2017-04-04 15:41:41 +0200
committerNicolas Koenig <koenigni@gcc.gnu.org>2017-04-04 13:41:41 +0000
commit15f12d9677a4f8284578d03003fca4a6b78cc6d4 (patch)
tree47ead797c2864d6fb28699977ba4feebd71787e9 /gcc
parentd90175a4bb3409aed1318b74bbe75c3abb889e38 (diff)
downloadgcc-15f12d9677a4f8284578d03003fca4a6b78cc6d4.zip
gcc-15f12d9677a4f8284578d03003fca4a6b78cc6d4.tar.gz
gcc-15f12d9677a4f8284578d03003fca4a6b78cc6d4.tar.bz2
[multiple changes]
2017-03-18 Nicolas Koenig <koenigni@student.ethz.ch> PR fortran/69498 * symbol.c (gfc_delete_symtree): If there is a period in the name, ignore everything before it. 2017-03-18 Nicolas Koenig <koenigni@student.ethz.ch> PR fortran/69498 * gfortran.dg/submodule_unexp.f90: New test. From-SVN: r246679
Diffstat (limited to 'gcc')
-rw-r--r--gcc/fortran/ChangeLog6
-rw-r--r--gcc/fortran/symbol.c14
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gfortran.dg/submodule_unexp.f908
4 files changed, 31 insertions, 2 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 7528f37..e1057d7 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,9 @@
+2017-03-18 Nicolas Koenig <koenigni@student.ethz.ch>
+
+ PR fortran/69498
+ * symbol.c (gfc_delete_symtree): If there is a period in the name, ignore
+ everything before it.
+
2017-03-28 Janus Weil <janus@gcc.gnu.org>
PR fortran/78661
diff --git a/gcc/fortran/symbol.c b/gcc/fortran/symbol.c
index 6226bca..ec43e63 100644
--- a/gcc/fortran/symbol.c
+++ b/gcc/fortran/symbol.c
@@ -2782,10 +2782,20 @@ void
gfc_delete_symtree (gfc_symtree **root, const char *name)
{
gfc_symtree st, *st0;
+ const char *p;
- st0 = gfc_find_symtree (*root, name);
+ /* Submodules are marked as mod.submod. When freeing a submodule
+ symbol, the symtree only has "submod", so adjust that here. */
- st.name = gfc_get_string ("%s", name);
+ p = strrchr(name, '.');
+ if (p)
+ p++;
+ else
+ p = name;
+
+ st0 = gfc_find_symtree (*root, p);
+
+ st.name = gfc_get_string ("%s", p);
gfc_delete_bbt (root, &st, compare_symtree);
free (st0);
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index e14af29..2d5f91a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2017-04-04 Nicolas Koenig <koenigni@student.ethz.ch>
+
+ PR fortran/69498
+ * gfortran.dg/submodule_unexp.f90: New test.
+
2017-04-04 Jakub Jelinek <jakub@redhat.com>
PR target/80286
diff --git a/gcc/testsuite/gfortran.dg/submodule_unexp.f90 b/gcc/testsuite/gfortran.dg/submodule_unexp.f90
new file mode 100644
index 0000000..43a0553
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/submodule_unexp.f90
@@ -0,0 +1,8 @@
+! { dg-do compile }
+! PR fortran/69498
+! This used to ICE
+program p
+ type t
+ submodule (m) sm ! { dg-error "Unexpected SUBMODULE statement at" }
+ end type
+end