]> gcc.gnu.org Git - gcc.git/commitdiff
re PR fortran/16485 (Private subroutines from different modules collide during linking.)
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
Wed, 15 Sep 2004 13:12:52 +0000 (13:12 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Wed, 15 Sep 2004 13:12:52 +0000 (13:12 +0000)
2004-09-15  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>

PR fortran/16485
* module.c (write_symbol): Don't fill in module name here.
(write_symbol0): Fill in here instead.
testsuite/
* gfortran.dg/same_name_1.f90: New test.

From-SVN: r87551

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

index 1df48e167497b1bf5d183717cf16b7a81dd965c2..4f0c3a0e3f794160d01544580d127f0a98ac0da0 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-15  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       PR fortran/16485
+       * module.c (write_symbol): Don't fill in module name here.
+       (write_symbol0): Fill in here instead.
+
 2004-09-14  Kazu Hirata  <kazu@cs.umass.edu>
 
        * data.c, decl.c, f95-lang.c, gfortran.h, match.c,
index 5fabcb0564c3dec40989c93ffdfbfdb80fb28069..c5a94d21c32a3f646abe990778b84eea5a2176e6 100644 (file)
@@ -3198,9 +3198,6 @@ write_symbol (int n, gfc_symbol * sym)
   mio_integer (&n);
   mio_internal_string (sym->name);
 
-  if (sym->module[0] == '\0')
-    strcpy (sym->module, module_name);
-
   mio_internal_string (sym->module);
   mio_pointer_ref (&sym->ns);
 
@@ -3226,6 +3223,8 @@ write_symbol0 (gfc_symtree * st)
   write_symbol0 (st->right);
 
   sym = st->n.sym;
+  if (sym->module[0] == '\0')
+    strcpy (sym->module, module_name);
 
   if (sym->attr.flavor == FL_PROCEDURE && sym->attr.generic
       && !sym->attr.subroutine && !sym->attr.function)
index cf289f18cb100eb458fe69c68bb8f154199e891b..0cf8e980439a9e508396d2e3c49ebd02810482d3 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-15  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       PR fortran/16485
+       * gfortran.dg/same_name_1.f90: New test.
+
 2004-09-15  Diego Novillo  <dnovillo@redhat.com>
 
        * gcc.c-torture/execute/pr17252.c: Fix thinko.  Don't
diff --git a/gcc/testsuite/gfortran.dg/same_name_1.f90 b/gcc/testsuite/gfortran.dg/same_name_1.f90
new file mode 100644 (file)
index 0000000..cbeb875
--- /dev/null
@@ -0,0 +1,13 @@
+! { dg-do assemble }
+module n
+private u
+contains
+  subroutine u
+  end subroutine u
+end module n
+module m
+  private :: u
+contains
+  subroutine u
+  end subroutine u
+end module m
This page took 0.102199 seconds and 5 git commands to generate.