]> gcc.gnu.org Git - gcc.git/commitdiff
re PR tree-optimization/40323 (compiling just takes forever and doesn't really process)
authorMartin Jambor <mjambor@suse.cz>
Wed, 3 Jun 2009 11:56:05 +0000 (13:56 +0200)
committerMartin Jambor <jamborm@gcc.gnu.org>
Wed, 3 Jun 2009 11:56:05 +0000 (13:56 +0200)
2009-06-03  Martin Jambor  <mjambor@suse.cz>

PR tree-optimization/40323
* ipa-prop.c (get_ssa_def_if_simple_copy): Break if not single
assignment.

* testsuite/g++.dg/torture/pr40323.C: New file.

From-SVN: r148126

gcc/ChangeLog
gcc/ipa-prop.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/torture/pr40323.C [new file with mode: 0644]

index b289d6c2df988c1a42166bd3c8064df3a775accd..b8392d280a9bb37ba7901bd678b9600ab623e307 100644 (file)
@@ -1,3 +1,9 @@
+2009-06-03  Martin Jambor  <mjambor@suse.cz>
+
+       PR tree-optimization/40323
+       * ipa-prop.c (get_ssa_def_if_simple_copy): Break if not single
+       assignment.
+
 2009-06-03  Richard Guenther  <rguenther@suse.de>
 
        * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Use DECL_SIZE
index 6f5e26b2042dc6bd6fe9885530ed2098c7ade0bd..a376f45c7b3c7e5f1a252bfb2c3c41597b46fefd 100644 (file)
@@ -440,6 +440,8 @@ get_ssa_def_if_simple_copy (tree rhs)
 
       if (gimple_assign_single_p (def_stmt))
        rhs = gimple_assign_rhs1 (def_stmt);
+      else
+       break;
     }
   return rhs;
 }
index 981a89128e449b5fc134d2e198c6b29d680c3320..2fe13e1d659f0ebdf80116cd97323d76e86e0770 100644 (file)
@@ -1,3 +1,7 @@
+2009-06-03  Martin Jambor  <mjambor@suse.cz>
+
+       * g++.dg/torture/pr40323.C: New file.
+
 2009-06-03  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gnat.dg/specs/root.ads: New test.
diff --git a/gcc/testsuite/g++.dg/torture/pr40323.C b/gcc/testsuite/g++.dg/torture/pr40323.C
new file mode 100644 (file)
index 0000000..adecf7f
--- /dev/null
@@ -0,0 +1,68 @@
+/* Testcase for PR 40323.  */
+/* { dg-do compile } */
+/* { dg-options "-fno-early-inlining"  } */
+/* { dg-options "-fno-early-inlining -fpie" { target { ! nonpic } } } */
+
+extern void do_something (const char *, int);
+
+class Parent
+{
+private:
+  const char *data;
+
+public:
+  Parent (const char *d) : data(d)
+  {}
+
+  int funcOne (int delim) const;
+};
+
+class AnotherParent
+{
+private:
+  double d;
+public:
+  AnotherParent (void) : d(0)
+  {}
+};
+
+
+class Child : public AnotherParent, Parent
+{
+private:
+  int zzz;
+public:
+  Child (const char *d) : Parent(d)
+  {}
+};
+
+
+int Parent::funcOne (int delim) const
+{
+  int i;
+  for (i = 0; i < delim; i++)
+    do_something(data, i);
+
+  return 1;
+}
+
+int docalling (int (Child::* f)(int delim) const)
+{
+  Child S ("muhehehe");
+
+  return (S.*f)(4);
+}
+
+typedef int (Parent::* my_mp_type)(int delim);
+
+int main (int argc, char *argv[])
+{
+  int i;
+  int (Parent::* f)(int ) const;
+  int (Child::* g)(int ) const;
+  
+  f = &Parent::funcOne;
+  g = (int (Child::* )(int) const) f;
+  i = docalling (g);
+  return i;
+}
This page took 0.141454 seconds and 5 git commands to generate.