aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_shortShift32Right1Jam.c
blob: f43c1fc63d1776547dae6b9a257227ed8712eed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// See LICENSE.SoftFloat for license details.


#include <stdint.h>
#include "platform.h"
#include "primitives.h"

uint32_t softfloat_shortShift32Right1Jam( uint32_t a )
{

    return a>>1 | ( a & 1 );

}