URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20020920-1.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort (void); extern void exit (int); struct B { int x; int y; }; struct A { int z; struct B b; }; struct A f () { struct B b = { 0, 1 }; struct A a = { 2, b }; return a; } int main (void) { struct A a = f (); if (a.z != 2 || a.b.x != 0 || a.b.y != 1) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log