aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Thomas <pault@gcc.gnu.org>2015-07-17 17:26:12 +0000
committerPaul Thomas <pault@gcc.gnu.org>2015-07-17 17:26:12 +0000
commit91ff0ece84ae17071455b7de1ff624d42b7859ab (patch)
tree8bcbbe277ac99bb33f607f90aa32755206f90875
parent0240a6db7136efe5cbe4a47f905f30d80a43dfd1 (diff)
downloadgcc-91ff0ece84ae17071455b7de1ff624d42b7859ab.zip
gcc-91ff0ece84ae17071455b7de1ff624d42b7859ab.tar.gz
gcc-91ff0ece84ae17071455b7de1ff624d42b7859ab.tar.bz2
re PR fortran/52846 ([F2008] Support submodules)
2015-07-17 Paul Thomas <pault@gcc.gnu.org> PR fortran/52846 * decl.c (gfc_match_end): Pick out declared submodule name from the composite identifier. * gfortran.h : Add 'submodule_name' to gfc_use_list structure. * module.c (gfc_match_submodule): Define submodule_name and add static 'submodule_name'. (gfc_match_submodule): Build up submodule filenames, using '@' as a delimiter. Store the output filename in 'submodule_name'. Similarly, the submodule identifier is built using '.' as an identifier. (gfc_dump_module): If current state is COMP_SUBMODULE, write to file 'submodule_name', using SUBMODULE_EXTENSION. (gfc_use_module): Similarly, use the 'submodule_name' field in the gfc_use_list structure and SUBMODULE_EXTENSION to read the implicitly used submodule files. 2015-07-17 Paul Thomas <pault@gcc.gnu.org> PR fortran/52846 * lib/fortran-modules.exp (proc cleanup-submodules): New procedure. * gfortran.dg/submodule_1.f08: Change extension and clean up the submodule files. * gfortran.dg/submodule_2.f08: ditto * gfortran.dg/submodule_6.f08: ditto * gfortran.dg/submodule_7.f08: ditto * gfortran.dg/submodule_8.f08: New test * gfortran.dg/submodule_9.f08: New test From-SVN: r225955
-rw-r--r--gcc/testsuite/gfortran.dg/submodule_6.f08 (renamed from gcc/testsuite/gfortran.dg/submodule_6.f90)2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/submodule_6.f90 b/gcc/testsuite/gfortran.dg/submodule_6.f08
index b018b59..e0b195e 100644
--- a/gcc/testsuite/gfortran.dg/submodule_6.f90
+++ b/gcc/testsuite/gfortran.dg/submodule_6.f08
@@ -88,4 +88,6 @@ program p
call p_a(a, create_b([3,4,5]))
call print(a)
end program p
+! { dg-final { cleanup-submodules "mod_a@imp_p_a" } }
+! { dg-final { cleanup-submodules "mod_b@imp_create" } }