]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR fortran/33542 (gfortran does not detect ambigious specific names if they are...
authorPaul Thomas <pault@gcc.gnu.org>
Fri, 12 Oct 2007 16:51:53 +0000 (16:51 +0000)
committerPaul Thomas <pault@gcc.gnu.org>
Fri, 12 Oct 2007 16:51:53 +0000 (16:51 +0000)
2007-10-12  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/33542
* resolve.c (resolve_actual_arglist): If the actual argument is
ambiguous, then there is an error.

2007-10-12  Paul Thomas  <pault@gcc.gnu.org>

PR fortran/33542
* gfortran.dg/ambiguous_specific_1.f90: New test.

From-SVN: r129268

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

index c6e6d7eb64addb854d599066ef1edf0a39fc9aed..92a757096bf65a783e77c96ecc8d3f5e24261dab 100644 (file)
@@ -1,3 +1,9 @@
+2007-10-12  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/33542
+       * resolve.c (resolve_actual_arglist): If the actual argument is
+       ambiguous, then there is an error.
+
 2007-10-12  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/33664
index 2686c3dac82156c2db5caeede2887db7c2104a7b..26c139c84b889da9c203a418d735a356b19bcc76 100644 (file)
@@ -971,6 +971,13 @@ resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype)
          continue;
        }
 
+      if (e->expr_type == FL_VARIABLE && e->symtree->ambiguous)
+       {
+         gfc_error ("'%s' at %L is ambiguous", e->symtree->n.sym->name,
+                    &e->where);
+         return FAILURE;
+       }
+
       if (e->ts.type != BT_PROCEDURE)
        {
          if (gfc_resolve_expr (e) != SUCCESS)
index 890da97d183f43d6bb2d52db73ef7158e069a4b6..cd64825f97b199588cea0025b4c0ada28bcca608 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-12  Paul Thomas  <pault@gcc.gnu.org>
+
+       PR fortran/33542
+       * gfortran.dg/ambiguous_specific_1.f90: New test.
+
 2007-10-12  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/33664
diff --git a/gcc/testsuite/gfortran.dg/ambiguous_specific_1.f90 b/gcc/testsuite/gfortran.dg/ambiguous_specific_1.f90
new file mode 100644 (file)
index 0000000..b5292b2
--- /dev/null
@@ -0,0 +1,38 @@
+! { dg-do compile }
+! Checks the fix for PR33542, in which the ambiguity in the specific
+! interfaces of foo was missed.
+!
+! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
+!
+MODULE M1
+   INTERFACE FOO
+     MODULE PROCEDURE FOO
+   END INTERFACE
+CONTAINS
+   SUBROUTINE FOO(I)
+     INTEGER, INTENT(IN) :: I
+     WRITE(*,*) 'INTEGER'
+   END SUBROUTINE FOO
+END MODULE M1
+
+MODULE M2
+   INTERFACE FOO
+     MODULE PROCEDURE FOO
+   END INTERFACE
+CONTAINS
+   SUBROUTINE FOO(R)
+     REAL, INTENT(IN) :: R
+     WRITE(*,*) 'REAL'
+   END SUBROUTINE FOO
+END MODULE M2
+
+PROGRAM P
+   USE M1
+   USE M2
+   implicit none
+   external bar
+   CALL FOO(10)
+   CALL FOO(10.)
+   call bar (foo)  ! { dg-error "is ambiguous" }
+END PROGRAM P
+! { dg-final { cleanup-modules "m1 m2" } }