URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [lrshift_1.c] - Rev 841
Go to most recent revision | 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); }
Go to most recent revision | Compare with Previous | Blame | View Log