Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gfortran.dg
/
lrshift_1.c
blob: 8b451107b01022f476f0b385affbaf7218470a98 [
file
] [
log
] [
blame
]
/* 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
);
}