From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:39372) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qxk2A-00047q-KB for qemu-devel@nongnu.org; Sun, 28 Aug 2011 14:24:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qxk29-0005aj-Ez for qemu-devel@nongnu.org; Sun, 28 Aug 2011 14:24:38 -0400 Received: from fmmailgate02.web.de ([217.72.192.227]:34956) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qxk29-0005ad-2n for qemu-devel@nongnu.org; Sun, 28 Aug 2011 14:24:37 -0400 Received: from smtp03.web.de ( [172.20.0.65]) by fmmailgate02.web.de (Postfix) with ESMTP id CBCDA1A93C556 for ; Sun, 28 Aug 2011 20:24:35 +0200 (CEST) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Sun, 28 Aug 2011 20:24:33 +0200 Message-Id: <1314555874-53111-1-git-send-email-andreas.faerber@web.de> In-Reply-To: <831953E7-D895-4C27-A61D-D7F5E91B667B@web.de> References: <831953E7-D895-4C27-A61D-D7F5E91B667B@web.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: andreas.faerber@web.de Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 1/2] softfloat: Use uint16 consistently List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= Prepares for uint16 replacement. Signed-off-by: Andreas F=C3=A4rber --- fpu/softfloat.c | 8 ++++---- fpu/softfloat.h | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fpu/softfloat.c b/fpu/softfloat.c index 7951a0e..be1206d 100644 --- a/fpu/softfloat.c +++ b/fpu/softfloat.c @@ -6011,10 +6011,10 @@ unsigned int float32_to_uint32_round_to_zero( flo= at32 a STATUS_PARAM ) return res; } =20 -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; =20 v =3D float32_to_int64_round_to_zero(a STATUS_VAR); if (v < 0) { @@ -6065,10 +6065,10 @@ unsigned int float64_to_uint32_round_to_zero( flo= at64 a STATUS_PARAM ) return res; } =20 -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; =20 v =3D float64_to_int64_round_to_zero(a STATUS_VAR); if (v < 0) { diff --git a/fpu/softfloat.h b/fpu/softfloat.h index 3bb7d8f..e1bbe01 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -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 ); @@ -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 ); --=20 1.7.5.3