URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [950621-1.c] - Rev 154
Compare with Previous | Blame | View Log
struct s { int a; int b; struct s *dummy; }; f (struct s *sp) { return sp && sp->a == -1 && sp->b == -1; } main () { struct s x; x.a = x.b = -1; if (f (&x) == 0) abort (); exit (0); }