]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2019-06-14 Steven G. Kargl <kargl@gcc.gnu.org>
authorkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 14 Jun 2019 18:17:00 +0000 (18:17 +0000)
committerkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 14 Jun 2019 18:17:00 +0000 (18:17 +0000)
PR fortran/89646
* dependency.c (gfc_check_argument_var_dependency): Suppress spurious
warnings by comparing variable names.

2019-06-14  Steven G. Kargl  <kargl@gcc.gnu.org>

PR fortran/89646
* gfortran.dg/pr89646.f90: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@272307 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 99a399abc719e46012974a0422a1fd467520b6a8..9a82b9b789c4545a9db5e92117022d28111904fb 100644 (file)
@@ -1,4 +1,10 @@
-2019-06-12  Steven G. Kargl  <kargl@gcc.gnu.org>
+2019-06-14  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/89646
+       * dependency.c (gfc_check_argument_var_dependency): Suppress spurious
+       warnings by comparing variable names.
+
+2019-06-13  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        PR fortran/68544
        * resolve.c (is_dt_name): New function to compare symbol name against
index 8eae644962313c6406a67b23826316ff2bb6077a..be330e276c295d38a5555d3488c3e907311099aa 100644 (file)
@@ -979,10 +979,14 @@ gfc_check_argument_var_dependency (gfc_expr *var, sym_intent intent,
                     If a dependency is found in the case
                     elemental == ELEM_CHECK_VARIABLE, we will generate
                     a temporary, so we don't need to bother the user.  */
-                 gfc_warning (0, "INTENT(%s) actual argument at %L might "
-                              "interfere with actual argument at %L.",
-                              intent == INTENT_OUT ? "OUT" : "INOUT",
-                              &var->where, &expr->where);
+
+                 if (var->expr_type == EXPR_VARIABLE
+                     && expr->expr_type == EXPR_VARIABLE
+                     && strcmp(var->symtree->name, expr->symtree->name) == 0)
+                   gfc_warning (0, "INTENT(%s) actual argument at %L might "
+                                "interfere with actual argument at %L.",
+                                intent == INTENT_OUT ? "OUT" : "INOUT",
+                                &var->where, &expr->where);
                }
              return 0;
            }
index 3d64fb04d10a1a325e9a3f511532555cdc782303..8ab6cb423e6864e1dbbbe4911dbf3adb06a0bc60 100644 (file)
@@ -1,3 +1,8 @@
+2019-06-14  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       PR fortran/89646
+       * gfortran.dg/pr89646.f90: New test.
+
 2019-06-14  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR rtl-optimization/90765
diff --git a/gcc/testsuite/gfortran.dg/pr89646.f90 b/gcc/testsuite/gfortran.dg/pr89646.f90
new file mode 100644 (file)
index 0000000..c348020
--- /dev/null
@@ -0,0 +1,24 @@
+! { dg-do compile }
+! PR fortran/89646
+! Original testcase contributed by Ian Harvey <ian_harvey at bigpond dot com>
+!
+! This code use to give spurious warnings about aliasing.
+!
+module m
+   implicit none
+   type :: t
+   end type t
+   contains
+      ! To reproduce, both actual arguments must be TARGET, 
+      ! both arguments must be of derived type.
+      subroutine s
+         type(t), target :: a(5)
+         type(t), target :: b(5)
+         call move(a, b)
+      end subroutine s
+      ! To reproduce, called procedure must be elemental.
+      elemental subroutine move(x, y)
+         type(t), intent(inout) :: x
+         type(t), intent(out) :: y
+      end subroutine move
+end module m