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/] [960301-1.c] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
struct foo { unsigned : 12; unsigned field : 4; } foo; unsigned oldfoo; int bar (unsigned k) { oldfoo = foo.field; foo.field = k; if (k) return 1; return 2; } main () { if (bar (1U) != 1) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log