From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:43398) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QCUOe-0000Af-Gn for qemu-devel@nongnu.org; Wed, 20 Apr 2011 06:12:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QCUOX-0004S2-6k for qemu-devel@nongnu.org; Wed, 20 Apr 2011 06:12:32 -0400 Received: from hall.aurel32.net ([88.191.126.93]:43742) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QCUOW-0004Rd-VJ for qemu-devel@nongnu.org; Wed, 20 Apr 2011 06:12:25 -0400 From: Aurelien Jarno Date: Wed, 20 Apr 2011 12:11:57 +0200 Message-Id: <1303294329-22634-9-git-send-email-aurelien@aurel32.net> In-Reply-To: <1303294329-22634-1-git-send-email-aurelien@aurel32.net> References: <1303294329-22634-1-git-send-email-aurelien@aurel32.net> Subject: [Qemu-devel] [PATCH v2 08/20] softfloat-native: fix float*_scalbn() functions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Aurelien Jarno float*_scalbn() should be able to take a status parameter. Fix that. Reviewed-by: Peter Maydell Signed-off-by: Aurelien Jarno --- fpu/softfloat-native.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fpu/softfloat-native.h b/fpu/softfloat-native.h index 97fb3c7..f497e64 100644 --- a/fpu/softfloat-native.h +++ b/fpu/softfloat-native.h @@ -283,7 +283,7 @@ INLINE float32 float32_is_zero(float32 a) return fpclassify(a) == FP_ZERO; } -INLINE float32 float32_scalbn(float32 a, int n) +INLINE float32 float32_scalbn(float32 a, int n STATUS_PARAM) { return scalbnf(a, n); } @@ -404,7 +404,7 @@ INLINE float64 float64_is_zero(float64 a) return fpclassify(a) == FP_ZERO; } -INLINE float64 float64_scalbn(float64 a, int n) +INLINE float64 float64_scalbn(float64 a, int n STATUS_PARAM) { return scalbn(a, n); } @@ -520,7 +520,7 @@ INLINE floatx80 floatx80_is_zero(floatx80 a) return fpclassify(a) == FP_ZERO; } -INLINE floatx80 floatx80_scalbn(floatx80 a, int n) +INLINE floatx80 floatx80_scalbn(floatx80 a, int n STATUS_PARAM) { return scalbnl(a, n); } -- 1.7.2.3