Skip to content

Commit

Permalink
softfloat: Use uint16 consistently
Browse files Browse the repository at this point in the history
Prepares for uint16 replacement.

Signed-off-by: Andreas Färber <[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
Signed-off-by: Blue Swirl <[email protected]>
  • Loading branch information
afaerber authored and blueswirl committed Sep 3, 2011
1 parent e2d8830 commit 38641f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions fpu/softfloat.c
Original file line number Diff line number Diff line change
Expand Up @@ -6011,10 +6011,10 @@ unsigned int float32_to_uint32_round_to_zero( float32 a STATUS_PARAM )
return res;
}

unsigned int float32_to_uint16_round_to_zero( float32 a STATUS_PARAM )
uint16 float32_to_uint16_round_to_zero( float32 a STATUS_PARAM )
{
int64_t v;
unsigned int res;
uint16 res;

v = float32_to_int64_round_to_zero(a STATUS_VAR);
if (v < 0) {
Expand Down Expand Up @@ -6065,10 +6065,10 @@ unsigned int float64_to_uint32_round_to_zero( float64 a STATUS_PARAM )
return res;
}

unsigned int float64_to_uint16_round_to_zero( float64 a STATUS_PARAM )
uint16 float64_to_uint16_round_to_zero( float64 a STATUS_PARAM )
{
int64_t v;
unsigned int res;
uint16 res;

v = float64_to_int64_round_to_zero(a STATUS_VAR);
if (v < 0) {
Expand Down
4 changes: 2 additions & 2 deletions fpu/softfloat.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ extern const float16 float16_default_nan;
| Software IEC/IEEE single-precision conversion routines.
*----------------------------------------------------------------------------*/
int16 float32_to_int16_round_to_zero( float32 STATUS_PARAM );
unsigned int float32_to_uint16_round_to_zero( float32 STATUS_PARAM );
uint16 float32_to_uint16_round_to_zero( float32 STATUS_PARAM );
int32 float32_to_int32( float32 STATUS_PARAM );
int32 float32_to_int32_round_to_zero( float32 STATUS_PARAM );
uint32 float32_to_uint32( float32 STATUS_PARAM );
Expand Down Expand Up @@ -352,7 +352,7 @@ extern const float32 float32_default_nan;
| Software IEC/IEEE double-precision conversion routines.
*----------------------------------------------------------------------------*/
int16 float64_to_int16_round_to_zero( float64 STATUS_PARAM );
unsigned int float64_to_uint16_round_to_zero( float64 STATUS_PARAM );
uint16 float64_to_uint16_round_to_zero( float64 STATUS_PARAM );
int32 float64_to_int32( float64 STATUS_PARAM );
int32 float64_to_int32_round_to_zero( float64 STATUS_PARAM );
uint32 float64_to_uint32( float64 STATUS_PARAM );
Expand Down

0 comments on commit 38641f8

Please sign in to comment.