URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr46883.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
void bar (unsigned char *q, unsigned short *data16s, int len) { int i; for (i = 0; i < len; i++) { q[2 * i] = (((data16s[i] & 0xFF) << 8) | ((data16s[i] >> 8) & 0xFF)) & 0xFF; q[2 * i + 1] = ((unsigned short) (((data16s[i] & 0xFF) << 8) | ((data16s[i] >> 8) & 0xFF))) >> 8; } }
Go to most recent revision | Compare with Previous | Blame | View Log