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/] [930630-1.c] - Rev 154
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 main () { struct { signed int bf0:17; signed int bf1:7; } bf; bf.bf1 = 7; f (bf.bf1); exit (0); } f (x) int x; { if (x != 7) abort (); } #endif