URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [lrshift_1.c] - Rev 165
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