aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/fortran/trans-decl.c2
-rw-r--r--gcc/testsuite/gfortran.dg/recursive_check_16.f9025
2 files changed, 26 insertions, 1 deletions
diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c
index e10122e..769ab20 100644
--- a/gcc/fortran/trans-decl.c
+++ b/gcc/fortran/trans-decl.c
@@ -6789,7 +6789,7 @@ gfc_generate_function_code (gfc_namespace * ns)
|| (sym->attr.entry_master
&& sym->ns->entries->sym->attr.recursive);
if ((gfc_option.rtcheck & GFC_RTCHECK_RECURSION)
- && !is_recursive && !flag_recursive)
+ && !is_recursive && !flag_recursive && !sym->attr.artificial)
{
char * msg;
diff --git a/gcc/testsuite/gfortran.dg/recursive_check_16.f90 b/gcc/testsuite/gfortran.dg/recursive_check_16.f90
new file mode 100644
index 0000000..d8e9d69
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/recursive_check_16.f90
@@ -0,0 +1,25 @@
+! { dg-do run }
+! ! { dg-options "-fcheck=recursion" }
+! PR 95743 - this used cause a runtime error.
+! Test case by Antoine Lemoine
+
+program test_recursive_call
+ implicit none
+
+ type t_tree_node
+ type(t_tree_node), dimension(:), allocatable :: child
+ end type
+
+ type t_tree
+ type(t_tree_node), allocatable :: root
+ end type
+
+ type(t_tree), allocatable :: tree
+
+ allocate(tree)
+ allocate(tree%root)
+ allocate(tree%root%child(1))
+ ! If the line below is removed, the code works fine.
+ allocate(tree%root%child(1)%child(1))
+ deallocate(tree)
+end program