URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20001017-2.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
void fn_4parms (unsigned char a, long *b, long *c, unsigned int *d) { if (*b != 1 || *c != 2 || *d != 3) abort (); } int main () { unsigned char a = 0; unsigned long b = 1, c = 2; unsigned int d = 3; fn_4parms (a, &b, &c, &d); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log