On Tue, Mar 30, 2010 at 11:13:32AM -0700, Janis Johnson wrote:
> > 2010-03-30 Martin Jambor <[email protected]>
> >
> > * inline-params.c: Disable early inlining. Xfail run only with -O2,
> > -O3 or -Os and not with -fwhopr.
> >
> > Index: gcc/testsuite/gcc.dg/guality/inline-params.c
> > ===================================================================
> > --- gcc/testsuite/gcc.dg/guality/inline-params.c (revision 157786)
> > +++ gcc/testsuite/gcc.dg/guality/inline-params.c (working copy)
> > @@ -1,6 +1,10 @@
> > -/* { dg-do run { xfail *-*-* } } */
> > -/* IPA-SRA removes the argumet as dead, so we don't see their values. */
> > -/* { dg-options "-g -fno-ipa-sra" } */
> > +/* { dg-do run } */
> > +/* IPA-SRA removes the argumet as dead, so we don't see their values, early
Can you please s/argumet/argument/ when you are touching it?
> > + inlining inlines the functions too early to test the real IPA passes
> > (such
> > + as IPA-CP). */
> > +/* { dg-options "-g -fno-early-inlining -fno-ipa-sra" } */
> > +/* { dg-xfail-run-if "" { "*-*-*" } { "-O2" "-O3" "-Os" } { "-fwhopr" } }
> > */
> > +
> > #define GUALITY_DONT_FORCE_LIVE_AFTER -1
> >
> > #ifndef STATIC_INLINE
> >
Jakub