URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [opt/] [cond1.C] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
// { dg-options "-O2" }
struct D { int x; };
struct W
{
W () {}
D & operator * () { return d; }
D d;
};
int
foo (int y)
{
W m;
(*m).x = (y > 1 ? y : 0);
return (*m).x;
}
int
main ()
{
return (foo (6) != 6);
}
Go to most recent revision | Compare with Previous | Blame | View Log