From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:47740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TE85L-0008KX-Jq for qemu-devel@nongnu.org; Tue, 18 Sep 2012 20:24:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TE85K-000526-In for qemu-devel@nongnu.org; Tue, 18 Sep 2012 20:24:11 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:64878) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TE85K-00051u-BO for qemu-devel@nongnu.org; Tue, 18 Sep 2012 20:24:10 -0400 Received: by mail-lb0-f173.google.com with SMTP id gm13so378744lbb.4 for ; Tue, 18 Sep 2012 17:24:09 -0700 (PDT) From: Max Filippov Date: Wed, 19 Sep 2012 04:23:50 +0400 Message-Id: <1348014239-6233-2-git-send-email-jcmvbkbc@gmail.com> In-Reply-To: <1348014239-6233-1-git-send-email-jcmvbkbc@gmail.com> References: <1348014239-6233-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH v3 01/10] softfloat: make float_muladd_negate_* flags independent List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , Peter Maydell , Max Filippov Flags passed into float{32,64}_muladd are treated as bits; assign independent bits to float_muladd_negate_* to allow precise control over what gets negated in float{32,64}_muladd. Signed-off-by: Max Filippov Reviewed-by: Aurelien Jarno --- fpu/softfloat.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fpu/softfloat.h b/fpu/softfloat.h index feec3a1..2860ca0 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -219,7 +219,7 @@ void float_raise( int8 flags STATUS_PARAM); enum { float_muladd_negate_c = 1, float_muladd_negate_product = 2, - float_muladd_negate_result = 3, + float_muladd_negate_result = 4, }; /*---------------------------------------------------------------------------- -- 1.7.7.6