+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
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);
+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