public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r10-10384] Fortran: fix passing return value to class(*) dummy argument
@ 2022-01-07 17:47 Harald Anlauf
  0 siblings, 0 replies; only message in thread
From: Harald Anlauf @ 2022-01-07 17:47 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:6a3018a4064b39a418d95c32e45fe7d6ad17ebf3

commit r10-10384-g6a3018a4064b39a418d95c32e45fe7d6ad17ebf3
Author: Harald Anlauf <anlauf@gmx.de>
Date:   Sun May 23 20:51:14 2021 +0200

    Fortran: fix passing return value to class(*) dummy argument
    
    gcc/fortran/ChangeLog:
    
            PR fortran/100551
            * trans-expr.c (gfc_conv_procedure_call): Adjust check for
            implicit conversion of actual argument to an unlimited polymorphic
            procedure argument.
    
    gcc/testsuite/ChangeLog:
    
            PR fortran/100551
            * gfortran.dg/pr100551.f90: New test.
    
    (cherry picked from commit fe03f4fc9548b3fdbff3c8284a994feaa7d6307d)

Diff:
---
 gcc/fortran/trans-expr.c               |  4 +++-
 gcc/testsuite/gfortran.dg/pr100551.f90 | 30 ++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+), 1 deletion(-)

diff --git a/gcc/fortran/trans-expr.c b/gcc/fortran/trans-expr.c
index 07e046cc2ac..c0ade411991 100644
--- a/gcc/fortran/trans-expr.c
+++ b/gcc/fortran/trans-expr.c
@@ -5774,7 +5774,9 @@ gfc_conv_procedure_call (gfc_se * se, gfc_symbol * sym,
 				     || CLASS_DATA (fsym)->attr.allocatable);
 	}
       else if (UNLIMITED_POLY (fsym) && e->ts.type != BT_CLASS
-	       && gfc_expr_attr (e).flavor != FL_PROCEDURE)
+	       && e->ts.type != BT_PROCEDURE
+	       && (gfc_expr_attr (e).flavor != FL_PROCEDURE
+		   || gfc_expr_attr (e).proc != PROC_UNKNOWN))
 	{
 	  /* The intrinsic type needs to be converted to a temporary
 	     CLASS object for the unlimited polymorphic formal.  */
diff --git a/gcc/testsuite/gfortran.dg/pr100551.f90 b/gcc/testsuite/gfortran.dg/pr100551.f90
new file mode 100644
index 00000000000..f82f505e734
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/pr100551.f90
@@ -0,0 +1,30 @@
+! { dg-do run }
+! PR fortran/100551 - Passing return value to class(*) dummy argument
+
+program p
+  implicit none
+  integer :: result
+  result = 1
+  result = test (    (result)) ! works
+  if (result /= 1) stop 1
+  result = test (int (result)) ! issue 1
+! write(*,*) result
+  if (result /= 1) stop 2
+  result = test (f   (result)) ! issue 2
+! write(*,*) result
+  if (result /= 2) stop 3
+contains
+  integer function test(x)
+    class(*), intent(in) :: x
+    select type (x)
+    type is (integer)
+       test = x
+    class default
+       test = -1
+    end select
+  end function test
+  integer function f(x)
+    integer, intent(in) :: x
+    f = 2*x
+  end function f
+end program


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-07 17:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-07 17:47 [gcc r10-10384] Fortran: fix passing return value to class(*) dummy argument Harald Anlauf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).