URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [930621-1.c] - Rev 688
Compare with Previous | Blame | View Log
/* The bit-field below would have a problem if __INT_MAX__ is too small. */ #if __INT_MAX__ < 2147483647 int main (void) { exit (0); } #else f () { struct { int x : 18; int y : 14; } foo; foo.x = 10; foo.y = 20; return foo.y; } main () { if (f () != 20) abort (); exit (0); } #endif