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.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr38428.c] - Rev 302
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR middle-end/38428 */ struct S { volatile struct { unsigned int t : 1; } s; }; int foo (struct S *x) { int ret; if (x->s.t) ret = 0; else ret = 10; return ret; }
Go to most recent revision | Compare with Previous | Blame | View Log