Move testsuite changes to correct ChangeLog, and delete a new
authorTeresa Johnson <tejohnson@google.com>
Fri, 30 Aug 2013 13:17:22 +0000 (13:17 +0000)
committerTeresa Johnson <tejohnson@gcc.gnu.org>
Fri, 30 Aug 2013 13:17:22 +0000 (13:17 +0000)
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

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/inline-dump.c [deleted file]

index b3e38447ac2c234780d97352f6b5c6230f2ce944..b63c3201d298d08ebc980eb54c969c5b59576c59 100644 (file)
        * 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
index e7e71853bae3df87c944290e2805ddd7da59dd9d..a46bb121a8ec5c0895959f323c74ba6572a35f41 100644 (file)
@@ -1,3 +1,7 @@
+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
diff --git a/gcc/testsuite/gcc.dg/inline-dump.c b/gcc/testsuite/gcc.dg/inline-dump.c
deleted file mode 100644 (file)
index e0c9ba6..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-/* 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(); }