PR testsuite/49753
PR tree-optimization/49309
* testsuite/libmudflap.c++/pass68-frag.cxx: New test.
* g++.dg/torture/pr49309.C: Remove.
From-SVN: r176327
+2011-07-15 Jakub Jelinek <jakub@redhat.com>
+
+ PR testsuite/49753
+ * g++.dg/torture/pr49309.C: Remove.
+
2011-07-15 Bernd Schmidt <bernds@codesourcery.com>
* gcc.target/tic6x/weak-call.c: New test.
+++ /dev/null
-/* { dg-do compile } */
-/* { dg-options "-fmudflap" } */
-struct A
-{
- int i;
-
- A();
- A(const A&);
-};
-
-inline void foo(A a) { a = A(); }
-
-void bar() { foo(A()); }
-
+2011-07-15 Jakub Jelinek <jakub@redhat.com>
+
+ PR testsuite/49753
+ PR tree-optimization/49309
+ * testsuite/libmudflap.c++/pass68-frag.cxx: New test.
+
2011-07-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* configure.ac: Don't create pth.
--- /dev/null
+// PR tree-optimization/49309
+// { dg-do compile }
+// { dg-options "-fmudflap" }
+
+struct A
+{
+ int i;
+
+ A();
+ A(const A&);
+};
+
+inline void foo(A a) { a = A(); }
+
+void bar() { foo(A()); }