URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr38422.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR middle-end/38422 */ extern void abort (void); struct S { int s : (sizeof (int) * __CHAR_BIT__ - 2); } s; void foo (void) { s.s *= 2; } int main () { s.s = 24; foo (); if (s.s != 48) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log