test that should not have been committed.
2013-08-30 Teresa Johnson <tejohnson@google.com>
* gcc.dg/inline-dump.c: Delete inadvertant commit.
From-SVN: r202106
* coverage.c (get_coverage_counts): Ditto.
(coverage_init): Setup new dump framework.
- * testsuite/gcc.dg/pr40209.c: Use -fopt-info.
- * testsuite/gcc.dg/pr26570.c: Ditto.
- * testsuite/gcc.dg/pr32773.c: Ditto.
- * testsuite/g++.dg/tree-ssa/dom-invalid.C: Ditto.
- * testsuite/gcc.dg/inline-dump.c: New test.
-
2013-08-29 Richard Biener <rguenther@suse.de>
PR tree-optimization/58246
+2013-08-30 Teresa Johnson <tejohnson@google.com>
+
+ * gcc.dg/inline-dump.c: Delete inadvertant commit.
+
2013-08-30 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/58277
* gcc.dg/tree-ssa/ipa-cp-1.c: Adjust regexp.
+2013-08-29 Teresa Johnson <tejohnson@google.com>
+
+ * gcc.dg/pr40209.c: Use -fopt-info.
+ * gcc.dg/pr26570.c: Ditto.
+ * gcc.dg/pr32773.c: Ditto.
+ * g++.dg/tree-ssa/dom-invalid.C: Ditto.
+
2013-08-29 Richard Biener <rguenther@suse.de>
PR tree-optimization/58246
+++ /dev/null
-/* Verify that -fopt-info can output correct inline info. */
-/* { dg-do compile } */
-/* { dg-options "-Wall -fopt-info-inline=stderr -O2 -fno-early-inlining" } */
-static inline int leaf() {
- int i, ret = 0;
- for (i = 0; i < 10; i++)
- ret += i;
- return ret;
-}
-static inline int foo(void) { return leaf(); } /* { dg-message "note: leaf .*inlined into bar .*via inline instance foo.*\n" } */
-int bar(void) { return foo(); }