From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:36148) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TAk0Q-0002t6-0v for qemu-devel@nongnu.org; Sun, 09 Sep 2012 12:05:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TAk0O-0007c9-Jp for qemu-devel@nongnu.org; Sun, 09 Sep 2012 12:05:05 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:55864) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TAk0O-0007ZU-D5 for qemu-devel@nongnu.org; Sun, 09 Sep 2012 12:05:04 -0400 Received: by lbbgm13 with SMTP id gm13so650430lbb.4 for ; Sun, 09 Sep 2012 09:05:03 -0700 (PDT) From: Max Filippov Date: Sun, 9 Sep 2012 20:04:30 +0400 Message-Id: <1347206679-428-2-git-send-email-jcmvbkbc@gmail.com> In-Reply-To: <1347206679-428-1-git-send-email-jcmvbkbc@gmail.com> References: <1347206679-428-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH v2 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