20070302-1.c (baz): Mark with attribute noinline.

* gcc.dg/tree-ssa/20070302-1.c (baz): Mark with attribute
	noinline.  XFAIL test.

From-SVN: r131875
This commit is contained in:
Kaveh R. Ghazi 2008-01-26 20:25:12 +00:00 committed by Kaveh Ghazi
parent ce97da2242
commit 987dbd1ba6
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-01-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/tree-ssa/20070302-1.c (baz): Mark with attribute
noinline. XFAIL test.
2008-01-26 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/31610

View File

@ -1,4 +1,5 @@
/* { dg-do link } */
/* { dg-xfail-if "" { *-*-* } { "*" } { "" } } See PR34743. */
/* { dg-options "-O2" } */
struct A
@ -9,7 +10,8 @@ struct A
volatile float X, Y;
int baz (struct A *z, struct A *y)
int __attribute__ ((__noinline__))
baz (struct A *z, struct A *y)
{
z->x = (int) X;
z->y = Y;