URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [lrshift_1.c] - Rev 694
Compare with Previous | Blame | View Log
/* Left and right shift C routines, to compare to Fortran results. */ int c_lshift_ (int *x, int *y) { return (*x) << (*y); } int c_rshift_ (int *x, int *y) { return (*x) >> (*y); }