URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr38405.c] - Rev 826
Compare with Previous | Blame | View Log
/* { dg-do run } */ extern void abort (); extern int printf (char *__format, ...); struct vpiBinaryConst { int signed_flag :1; int sized_flag :1; }; int binary_get(int code, struct vpiBinaryConst *rfp) { switch (code) { case 1: return rfp->signed_flag ? 1 : 0; default: printf("error: %d not supported\n", code); return code; } } int main(void) { struct vpiBinaryConst x={1,0}; int y=binary_get(1, &x); if (y!=1) abort (); return 0; }