From 38641f8f54117fc6a846ca9b62b2611aabf2d6fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Sun, 28 Aug 2011 20:24:33 +0200 Subject: softfloat: Use uint16 consistently MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prepares for uint16 replacement. Signed-off-by: Andreas Färber Reviewed-by: Peter Maydell Signed-off-by: Blue Swirl --- fpu/softfloat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fpu/softfloat.c') diff --git a/fpu/softfloat.c b/fpu/softfloat.c index 7951a0e869..be1206db80 100644 --- a/fpu/softfloat.c +++ b/fpu/softfloat.c @@ -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) { @@ -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) { -- cgit v1.2.3