Fortran: fix ICE on bad use of statement function [PR107995]
Checks
Commit Message
Dear all,
I'm submitting the attached patch on behalf of Steve.
It fixes an ICE that occurs on an obscure use of a
statement function as argument to that function.
Regtested on x86_64-pc-linux-gnu. OK for mainline?
Thanks,
Harald
Comments
On 12/10/22 1:23 PM, Harald Anlauf via Fortran wrote:
> Dear all,
>
> I'm submitting the attached patch on behalf of Steve.
> It fixes an ICE that occurs on an obscure use of a
> statement function as argument to that function.
>
> Regtested on x86_64-pc-linux-gnu. OK for mainline?
>
> Thanks,
> Harald
>
OK, looks good. See my unrelated question on mattermost.
Jerry
From f717054e7d656588650f6d4fd5a03840c6dc9a9c Mon Sep 17 00:00:00 2001
From: Steve Kargl <kargl@gcc.gnu.org>
Date: Sat, 10 Dec 2022 22:17:15 +0100
Subject: [PATCH] Fortran: fix ICE on bad use of statement function [PR107995]
gcc/fortran/ChangeLog:
PR fortran/107995
* interface.cc (gfc_check_dummy_characteristics): Reject statement
function dummy arguments.
gcc/testsuite/ChangeLog:
PR fortran/107995
* gfortran.dg/pr107995.f90: New test.
---
gcc/fortran/interface.cc | 6 ++++++
gcc/testsuite/gfortran.dg/pr107995.f90 | 10 ++++++++++
2 files changed, 16 insertions(+)
create mode 100644 gcc/testsuite/gfortran.dg/pr107995.f90
@@ -1334,6 +1334,12 @@ gfc_check_dummy_characteristics (gfc_symbol *s1, gfc_symbol *s2,
if (s1 == NULL || s2 == NULL)
return s1 == s2 ? true : false;
+ if (s1->attr.proc == PROC_ST_FUNCTION || s2->attr.proc == PROC_ST_FUNCTION)
+ {
+ strncpy (errmsg, "Statement function", err_len);
+ return false;
+ }
+
/* Check type and rank. */
if (type_must_agree)
{
new file mode 100644
@@ -0,0 +1,10 @@
+! { dg-do compile }
+! PR fortran/107995
+! Contributed by G.Steinmetz
+
+program p
+ implicit none
+ integer :: n ! { dg-error "Self-referential argument" }
+ n(n) = 1 ! { dg-warning "Statement function" }
+ print *, n(n) ! { dg-error "Statement function" }
+end
--
2.35.3