Move testsuite changes to correct ChangeLog, and delete a new

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
This commit is contained in:
Teresa Johnson 2013-08-30 13:17:22 +00:00 committed by Teresa Johnson
parent 8b29fd4e11
commit 8f2ea9a3b7
3 changed files with 11 additions and 17 deletions

View file

@ -99,12 +99,6 @@
* 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

View 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
@ -83,6 +87,13 @@
* 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

View file

@ -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(); }