OSDN Git Service

2009-01-10 Paul Thomas <pault@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / fortran / dependency.c
index 56a6d36..265cf20 100644 (file)
@@ -1,5 +1,5 @@
 /* Dependency analysis
-   Copyright (C) 2000, 2001, 2002, 2005, 2006, 2007, 2008
+   Copyright (C) 2000, 2001, 2002, 2005, 2006, 2007, 2008, 2009
    Free Software Foundation, Inc.
    Contributed by Paul Brook <paul@nowt.org>
 
@@ -422,16 +422,20 @@ gfc_ref_needs_temporary_p (gfc_ref *ref)
 }
 
 
-static int
+int
 gfc_is_data_pointer (gfc_expr *e)
 {
   gfc_ref *ref;
 
-  if (e->expr_type != EXPR_VARIABLE)
+  if (e->expr_type != EXPR_VARIABLE && e->expr_type != EXPR_FUNCTION)
     return 0;
 
+  /* No subreference if it is a function  */
+  gcc_assert (e->expr_type == EXPR_VARIABLE || !e->ref);
+
   if (e->symtree->n.sym->attr.pointer)
     return 1;
+
   for (ref = e->ref; ref; ref = ref->next)
     if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
       return 1;
@@ -465,23 +469,25 @@ gfc_check_argument_var_dependency (gfc_expr *var, sym_intent intent,
       if (gfc_ref_needs_temporary_p (expr->ref)
          || gfc_check_dependency (var, expr, !elemental))
        {
-         if (elemental == ELEM_DONT_CHECK_VARIABLE
-             && !gfc_is_data_pointer (var)
-             && !gfc_is_data_pointer (expr))
+         if (elemental == ELEM_DONT_CHECK_VARIABLE)
            {
-             /* Elemental procedures forbid unspecified intents, 
-                and we don't check dependencies for INTENT_IN args.  */
-             gcc_assert (intent == INTENT_OUT || intent == INTENT_INOUT);
-
-             /* We are told not to check dependencies. 
-                We do it, however, and issue a warning in case we find one. 
-                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 ("INTENT(%s) actual argument at %L might interfere "
-                          "with actual argument at %L.", 
-                          intent == INTENT_OUT ? "OUT" : "INOUT", 
-                          &var->where, &expr->where);
+             /* Too many false positive with pointers.  */
+             if (!gfc_is_data_pointer (var) && !gfc_is_data_pointer (expr))
+               {
+                 /* Elemental procedures forbid unspecified intents, 
+                    and we don't check dependencies for INTENT_IN args.  */
+                 gcc_assert (intent == INTENT_OUT || intent == INTENT_INOUT);
+
+                 /* We are told not to check dependencies. 
+                    We do it, however, and issue a warning in case we find one.
+                    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 ("INTENT(%s) actual argument at %L might "
+                              "interfere with actual argument at %L.", 
+                              intent == INTENT_OUT ? "OUT" : "INOUT", 
+                              &var->where, &expr->where);
+               }
              return 0;
            }
          else