URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr45869.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ char * foo (unsigned int count, void **list) { char *minaddr = (char *) list[0]; unsigned int i; /* NOTE: change of type to "int" eliminates the ICE */ for (i = 1; i < count; i++) { char *addr = (char *) list[i]; if (addr < minaddr) minaddr = addr; } return minaddr; }
Go to most recent revision | Compare with Previous | Blame | View Log