db4c304331eaeb2ab9b3fbcd07d96abbf75ffa00
[riscv-isa-sim.git] / softfloat / s_shortShift32Right1Jam.c
1
2 #include <stdint.h>
3 #include "platform.h"
4 #include "primitives.h"
5
6 uint32_t softfloat_shortShift32Right1Jam( uint32_t a )
7 {
8
9 return a>>1 | ( a & 1 );
10
11 }
12