OSDN Git Service

PR tree-optimization/33017
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Sep 2007 23:29:58 +0000 (23:29 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 4 Sep 2007 23:29:58 +0000 (23:29 +0000)
* tree-data-ref.c (split_constant_offset) <case SSA_NAME>: Don't
recurse for pure or const function calls.

* gcc.dg/pr33017.c: New test.

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

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr33017.c [new file with mode: 0644]
gcc/tree-data-ref.c

index 8cbaeaa..7f83513 100644 (file)
@@ -3,6 +3,10 @@
        * config/rs6000/tramp.asm: Include config.h.
        Check __PIC__ or __pic__ macro instead of SHARED.
 
+       PR tree-optimization/33017
+       * tree-data-ref.c (split_constant_offset) <case SSA_NAME>: Don't
+       recurse for pure or const function calls.
+
 2007-09-04  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
 
        * c-format.c: Include alloc-pool.h.
index b68ba67..b191442 100644 (file)
@@ -1,3 +1,8 @@
+2007-09-05  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/33017
+       * gcc.dg/pr33017.c: New test.
+
 2007-09-05  Ben Elliston  <bje@au.ibm.com>
 
        * gcc.target/powerpc/ppu-intrinsics.c: Add test cases for the
diff --git a/gcc/testsuite/gcc.dg/pr33017.c b/gcc/testsuite/gcc.dg/pr33017.c
new file mode 100644 (file)
index 0000000..851fe71
--- /dev/null
@@ -0,0 +1,30 @@
+/* PR tree-optimization/33017 */
+/* { dg-do run } */
+/* { dg-options "-O2 -ftree-vectorize" } */
+
+extern __SIZE_TYPE__ strlen (const char *);
+extern void abort (void);
+
+char *
+__attribute__((noinline))
+foo (const char *string)
+{
+  int len;
+  static char var[0x104];
+  int off;
+  len = strlen (string);
+  for (off = 0; off < 64; off++)
+    var[len + off + 2] = 0x57;
+  return var;
+}
+
+int
+main (void)
+{
+  char *p = foo ("abcd");
+  int i;
+  for (i = 0; i < 0x104; i++)
+    if (p[i] != ((i >= 6 && i < 70) ? 0x57 : 0))
+      abort ();
+  return 0;
+}
index 6ad2e96..720c94d 100644 (file)
@@ -574,7 +574,8 @@ split_constant_offset (tree exp, tree *var, tree *off)
 
            if (!TREE_SIDE_EFFECTS (def_stmt_rhs) 
                && EXPR_P (def_stmt_rhs)
-               && !REFERENCE_CLASS_P (def_stmt_rhs))
+               && !REFERENCE_CLASS_P (def_stmt_rhs)
+               && !get_call_expr_in (def_stmt_rhs))
              {
                split_constant_offset (def_stmt_rhs, &var0, &off0);
                var0 = fold_convert (type, var0);