ipa-prop.c (determine_known_aggregate_parts): Skip writes to different declarations...
authorMartin Jambor <mjambor@suse.cz>
Thu, 8 Nov 2012 16:41:06 +0000 (17:41 +0100)
committerMartin Jambor <jamborm@gcc.gnu.org>
Thu, 8 Nov 2012 16:41:06 +0000 (17:41 +0100)
2012-11-08  Martin Jambor  <mjambor@suse.cz>

* ipa-prop.c (determine_known_aggregate_parts): Skip writes to
different declarations when tracking writes to a declaration.

* gfortran.dg/ipcp-array-1.f90: New test.

From-SVN: r193330

gcc/ChangeLog
gcc/ipa-prop.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/ipcp-array-1.f90 [new file with mode: 0644]

index 9f9e874..2e98e11 100644 (file)
@@ -1,3 +1,8 @@
+2012-11-08  Martin Jambor  <mjambor@suse.cz>
+
+       * ipa-prop.c (determine_known_aggregate_parts): Skip writes to
+       different declarations when tracking writes to a declaration.
+
 2012-11-07  David S. Miller  <davem@davemloft.net>
 
        * config/sparc/constraints.md ("U"): Document, in detail,
index f7323a6..b78dc65 100644 (file)
@@ -1318,7 +1318,12 @@ determine_known_aggregate_parts (gimple call, tree arg,
            break;
        }
       else if (lhs_base != arg_base)
-       break;
+       {
+         if (DECL_P (lhs_base))
+           continue;
+         else
+           break;
+       }
 
       if (lhs_offset + lhs_size < arg_offset
          || lhs_offset >= (arg_offset + arg_size))
index 67ee1ec..e545ea7 100644 (file)
@@ -1,3 +1,7 @@
+2012-11-08  Martin Jambor  <mjambor@suse.cz>
+
+       * gfortran.dg/ipcp-array-1.f90: New test.
+
 2012-11-08  Florian Weimer  <fweimer@redhat.com>
 
        * g++.old-deja/g++.abi/cxa_vec.C: Fix typo in comment.
diff --git a/gcc/testsuite/gfortran.dg/ipcp-array-1.f90 b/gcc/testsuite/gfortran.dg/ipcp-array-1.f90
new file mode 100644 (file)
index 0000000..e39109c
--- /dev/null
@@ -0,0 +1,19 @@
+! { dg-do compile }
+! { dg-options "-O2 -fdump-ipa-cp-details -fno-inline -fdump-tree-optimized" }
+
+subroutine bar (a, b, n)
+  integer :: a(n), b(n)
+  call foo (a, b)
+contains
+subroutine foo (a, b)
+  integer :: a(:), b(:)
+  a = b
+end subroutine
+end
+
+! { dg-final { scan-ipa-dump "Creating a specialized node of foo" "cp" } }
+! { dg-final { scan-ipa-dump-times "Aggregate replacements\[^=\]*=\[^=\]*=\[^=\]*=\[^=\]*=\[^=\]*=\[^=\]*=\[^=\]*=\[^=\]*=" 2 "cp" } }
+! { dg-final { cleanup-ipa-dump "cp" } }
+! { dg-final { scan-tree-dump-not "stride;" "optimized" } }
+! { dg-final { scan-tree-dump-not "lbound;" "optimized" } }
+! { dg-final { cleanup-tree-dump "optimized" } }