OSDN Git Service

2009-06-03 Martin Jambor <mjambor@suse.cz>
authorjamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Jun 2009 11:56:05 +0000 (11:56 +0000)
committerjamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Jun 2009 11:56:05 +0000 (11:56 +0000)
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.

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

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

index b289d6c..b8392d2 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 6f5e26b..a376f45 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 981a891..2fe13e1 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;
+}