2015-09-24 Richard Biener <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Sep 2015 07:34:47 +0000 (07:34 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Sep 2015 07:34:47 +0000 (07:34 +0000)
PR tree-optimization/48885
* tree-ssa-structalias.c (visit_loadstore): Handle default defs
as not including any restrict tags from other pointers.

* gcc.dg/tree-ssa/restrict-6.c: New testcase.

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

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/restrict-6.c [new file with mode: 0644]
gcc/tree-ssa-structalias.c

index c9eb9af..5ae3e44 100644 (file)
@@ -1,3 +1,9 @@
+2015-09-24  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/48885
+       * tree-ssa-structalias.c (visit_loadstore): Handle default defs
+       as not including any restrict tags from other pointers.
+
 2015-09-23  Thomas Schwinge  <thomas@codesourcery.com>
 
        * gcc.c (handle_foffload_option): Don't lose the trailing NUL
index bf0e13a..1d9b872 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-24  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/48885
+       * gcc.dg/tree-ssa/restrict-6.c: New testcase.
+
 2015-09-24  Patrick Palka  <ppalka@gcc.gnu.org>
 
        * c-c++-common/Wmisleading-indentation.c: Augment test.
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/restrict-6.c b/gcc/testsuite/gcc.dg/tree-ssa/restrict-6.c
new file mode 100644 (file)
index 0000000..7c5ed01
--- /dev/null
@@ -0,0 +1,11 @@
+/* { dg-do compile } */
+/* { dg-options "-O -fdump-tree-fre1" } */
+
+void
+test (int *a, int *b, int * __restrict__ v)
+{
+  *a = *v;
+  *b = *v;
+}
+
+/* { dg-final { scan-tree-dump-times "= \\*v" 1 "fre1" } } */
index 8d81bd4..8d86dcb 100644 (file)
@@ -6952,10 +6952,11 @@ visit_loadstore (gimple *, tree base, tree ref, void *clique_)
       || TREE_CODE (base) == TARGET_MEM_REF)
     {
       tree ptr = TREE_OPERAND (base, 0);
-      if (TREE_CODE (ptr) == SSA_NAME)
+      if (TREE_CODE (ptr) == SSA_NAME
+         && ! SSA_NAME_IS_DEFAULT_DEF (ptr))
        {
          /* ???  We need to make sure 'ptr' doesn't include any of
-            the restrict tags in its points-to set.  */
+            the restrict tags we added bases for in its points-to set.  */
          return false;
        }