From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56589) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TAWMG-0002dz-Jx for qemu-devel@nongnu.org; Sat, 08 Sep 2012 21:30:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TAWMF-0003ZK-L3 for qemu-devel@nongnu.org; Sat, 08 Sep 2012 21:30:44 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:53999) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TAWMF-0003YP-Dc for qemu-devel@nongnu.org; Sat, 08 Sep 2012 21:30:43 -0400 Received: by mail-lb0-f173.google.com with SMTP id gm13so479700lbb.4 for ; Sat, 08 Sep 2012 18:30:43 -0700 (PDT) From: Max Filippov Date: Sun, 9 Sep 2012 05:29:50 +0400 Message-Id: <1347154198-8629-2-git-send-email-jcmvbkbc@gmail.com> In-Reply-To: <1347154198-8629-1-git-send-email-jcmvbkbc@gmail.com> References: <1347154198-8629-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH 1/9] 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 , 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 --- 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