re PR tree-optimization/43879 (-fipa-pta causes various miscompilations)
authorRichard Guenther <rguenther@suse.de>
Sun, 2 May 2010 18:10:53 +0000 (18:10 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Sun, 2 May 2010 18:10:53 +0000 (18:10 +0000)
2010-05-02  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/43879
* tree-tailcall.c (find_tail_calls): Clobbers also prevent
tail calls.

* gcc.dg/torture/pr43879-3.c: New testcase.

From-SVN: r158977

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/pr43879-3.c [new file with mode: 0644]
gcc/tree-tailcall.c

index 4cb8a344826ce84fd2a3779163c393b2b084f013..88aa4b038c328b8c8f0829741787a9d2814906e0 100644 (file)
@@ -1,3 +1,9 @@
+2010-05-02  Richard Guenther  <rguenther@suse.de>
+
+       PR tree-optimization/43879
+       * tree-tailcall.c (find_tail_calls): Clobbers also prevent
+       tail calls.
+
 2010-05-02  Bruno Haible  <bruno@clisp.org>
 
        * doc/extend.texi (Function Attributes): Fix a typo.
index 39a8d977d6ec784676ea9a208922873c74683b37..ff2b62c91645fa856d6abda5be99ffce2eb8f0a6 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-02  Richard Guenther  <rguenther@suse.de>
+
+       PR tree-optimization/43879
+       * gcc.dg/torture/pr43879-3.c: New testcase.
+
 2010-05-01  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/43949
diff --git a/gcc/testsuite/gcc.dg/torture/pr43879-3.c b/gcc/testsuite/gcc.dg/torture/pr43879-3.c
new file mode 100644 (file)
index 0000000..5ee80d5
--- /dev/null
@@ -0,0 +1,41 @@
+/* { dg-do run } */
+/* { dg-options "-fipa-pta" } */
+
+typedef unsigned long ulong;
+
+int __attribute__((noinline, noclone))
+f4 (int a, int b, int c, int d, int e)
+{
+  return a + b + c + d + e;
+}
+
+void __attribute__((noinline, noclone))
+f3 (int *p)
+{
+  *p = f4(1, 2, 3, 4, 5);
+}
+
+void __attribute__((noinline, noclone))
+f2 ()
+{
+  int unused;
+  f3 (&unused);
+}
+
+void __attribute__((noinline, noclone))
+f1 (ulong e, ulong f)
+{
+  if (e > 5 || f > 5) __builtin_abort();
+  f2 ();
+}
+
+
+int main()
+{
+ ulong e, f;
+ for (e = 5; e > 0; e--)
+   for (f = 5; f > 0; f--)
+     f1(e, f);
+ return 0;
+}
+
index a9f01919b4d503319f612467c191004436865b96..ec6d2fdff681c2706c6cad234d432355ffe97de3 100644 (file)
@@ -460,7 +460,8 @@ find_tail_calls (basic_block bb, struct tailcall **ret)
     {
       if (TREE_CODE (var) != PARM_DECL
          && auto_var_in_fn_p (var, cfun->decl)
-         && ref_maybe_used_by_stmt_p (call, var))
+         && (ref_maybe_used_by_stmt_p (call, var)
+             || call_may_clobber_ref_p (call, var)))
        return;
     }