]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fortran: Source allocation of pure module function rejected [PR119948]
authorPaul Thomas <pault@gcc.gnu.org>
Wed, 7 May 2025 07:52:52 +0000 (08:52 +0100)
committerPaul Thomas <pault@gcc.gnu.org>
Wed, 7 May 2025 07:59:16 +0000 (08:59 +0100)
2025-05-07  Paul Thomas  <pault@gcc.gnu.org>
    and Steven G. Kargl  <kargl@gcc.gnu.org>

gcc/fortran
PR fortran/119948
* primary.cc (match_variable): Module procedures with sym the
same as result can be treated as variables, although marked
external.

gcc/testsuite/
PR fortran/119948
* gfortran.dg/pr119948.f90: Update to incorporate failing test,
where module procedure is the result. Test submodule cases.

gcc/fortran/primary.cc
gcc/testsuite/gfortran.dg/pr119948.f90

index 72ecc7ccf934f923c1e6c876eb9b4525ae7e184e..ec4e13548c4cf7e7423112bf6c8aab9283b8d3c6 100644 (file)
@@ -4396,7 +4396,7 @@ match_variable (gfc_expr **result, int equiv_flag, int host_flag)
     case FL_PROCEDURE:
       /* Check for a nonrecursive function result variable.  */
       if (sym->attr.function
-         && !sym->attr.external
+         && (!sym->attr.external || sym->abr_modproc_decl)
          && sym->result == sym
          && (gfc_is_function_return_value (sym, gfc_current_ns)
              || (sym->attr.entry
index 9ecb080956139a57419733285aebf6db941dbc9d..2e36fae5a9dec42112bfff9d0d9a15417767359a 100644 (file)
@@ -1,7 +1,8 @@
-! { dg-do compile }
+! { dg-do run }
 !
-! Test the fix for PR119948, which used to fail as indicated below with,
-! "Error: Bad allocate-object at (1) for a PURE procedure"
+! Test the fix for PR119948, which used to fail as indicated below with:
+! (1) "Error: Bad allocate-object at (1) for a PURE procedure"
+! (2) "Error: â€˜construct_test2 at (1) is not a variable"
 !
 ! Contributed by Damian Rouson  <damian@archaeologic.codes>
 !
@@ -18,33 +19,65 @@ module test_m
       type(test_t) :: test
       type(test_t), intent(in) :: arg
     end function
-    pure module function construct_test_sub(arg) result(test)
+
+    pure module function construct_test2(arg)
+      implicit none
+      type(test_t) construct_test2
+      type(test_t), intent(in) :: arg
+    end function
+
+    pure module function construct_test_3(arg) result(test)
       implicit none
       type(test_t) :: test
       type(test_t), intent(in) :: arg
     end function
+
+    pure module function construct_test_4(arg)
+      implicit none
+      type(test_t) :: construct_test_4
+      type(test_t), intent(in) :: arg
+    end function
   end interface
 
 contains
   module procedure construct_test
-    allocate(test%i, source = arg%i) ! Used to fail here
+    allocate(test%i, source = arg%i) ! Fail #1
+  end procedure
+
+  module procedure construct_test2
+    allocate(construct_test2%i, source = arg%i)    ! Fail #2
   end procedure
 end module
 
 submodule (test_m)test_s
 contains
-  module procedure construct_test_sub
+  module procedure construct_test_3
     allocate(test%i, source = arg%i) ! This was OK.
   end procedure
+
+  module procedure construct_test_4
+    allocate(construct_test_4%i, source = arg%i) ! This was OK.
+  end procedure
 end submodule
 
   use test_m
   type(test_t) :: res, dummy
-  dummy%i = 42
+!
+  dummy%i = int (rand () * 1e6)
   res = construct_test (dummy)
   if (res%i /= dummy%i) stop 1
-  dummy%i = -42
-  res = construct_test_sub (dummy)
+!
+  dummy%i = int (rand () * 1e6)
+  res = construct_test2 (dummy)
   if (res%i /= dummy%i) stop 2
+!
+  dummy%i = int (rand () * 1e6)
+  res = construct_test_3 (dummy)
+  if (res%i /= dummy%i) stop 3
+
+  dummy%i = int (rand () * 1e6)
+  res = construct_test_4 (dummy)
+  if (res%i /= dummy%i) stop 4
+
   deallocate (res%i, dummy%i)
 end