Do not look at _data component in gfc_dep_resolver.
authorThomas Koenig <tkoenig@gcc.gnu.org>
Sat, 30 Nov 2019 15:02:50 +0000 (15:02 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Sat, 30 Nov 2019 15:02:50 +0000 (15:02 +0000)
2019-11-30  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/91783
* dependency.c (gfc_dep_resolver): Do not look at _data
component if present.

2019-11-30  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/91783
* gfortran.dg/dependency_56.f90: New test.

From-SVN: r278873

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

index b267386..a29d422 100644 (file)
@@ -1,3 +1,9 @@
+2019-11-30  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/91783
+       * dependency.c (gfc_dep_resolver): Do not look at _data
+       component if present.
+
 2019-11-28  Jerry DeLisle  <jvdelisle@gcc.ngu.org>
 
        PR fortran/90374
index 5114870..02e4b4f 100644 (file)
@@ -2098,6 +2098,18 @@ gfc_dep_resolver (gfc_ref *lref, gfc_ref *rref, gfc_reverse *reverse,
   gfc_dependency this_dep;
   bool same_component = false;
 
+  /* The refs might come in mixed, one with a _data component and one
+     without.  Look at their next reference in order to avoid an
+     ICE.  */
+
+  if (lref && lref->type == REF_COMPONENT && lref->u.c.component
+      && strcmp (lref->u.c.component->name, "_data") == 0)
+    lref = lref->next;
+
+  if (rref && rref->type == REF_COMPONENT && rref->u.c.component
+      && strcmp (rref->u.c.component->name, "_data") == 0)
+    rref = rref->next;
+
   this_dep = GFC_DEP_ERROR;
   fin_dep = GFC_DEP_ERROR;
   /* Dependencies due to pointers should already have been identified.
index ad1be1d..650866f 100644 (file)
@@ -1,3 +1,8 @@
+2019-11-30  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/91783
+       * gfortran.dg/dependency_56.f90: New test.
+
 2019-11-29  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/91003
diff --git a/gcc/testsuite/gfortran.dg/dependency_56.f90 b/gcc/testsuite/gfortran.dg/dependency_56.f90
new file mode 100644 (file)
index 0000000..97c0c81
--- /dev/null
@@ -0,0 +1,14 @@
+! { dg-do compile }
+! PR 91783 - used to cause an ICE in dependency checking.
+! Test case by Gerhard Steinmetz.
+program p
+   class(*), allocatable :: a(:)
+   a = [1, 2, 3]
+   a = f(a)
+contains
+   function f(x) result(y)
+      class(*), allocatable, intent(in) :: x(:)
+      class(*), allocatable :: y(:)
+      y = x
+   end
+end