From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40236) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCCjv-0007Hm-KY for qemu-devel@nongnu.org; Tue, 29 Jul 2014 15:07:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XCCjk-0005rm-OH for qemu-devel@nongnu.org; Tue, 29 Jul 2014 15:07:11 -0400 Received: from mail-qa0-x230.google.com ([2607:f8b0:400d:c00::230]:35526) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCCjk-0005rX-KL for qemu-devel@nongnu.org; Tue, 29 Jul 2014 15:07:00 -0400 Received: by mail-qa0-f48.google.com with SMTP id m5so124286qaj.7 for ; Tue, 29 Jul 2014 12:06:58 -0700 (PDT) Sender: Richard Henderson Message-ID: <53D7F0CB.9020101@twiddle.net> Date: Tue, 29 Jul 2014 09:06:51 -1000 From: Richard Henderson MIME-Version: 1.0 References: <3936561405348528@web11m.yandex.ru> <5212091406116528@web27m.yandex.ru> <3654261406127876@web2h.yandex.ru> In-Reply-To: <3654261406127876@web2h.yandex.ru> Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] target-i386/FPU: wrong conversion infinity from float80 to int32/int64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Dmitry Poletaev , Peter Maydell Cc: QEMU Developers On 07/23/2014 05:04 AM, Dmitry Poletaev wrote: > + if (env->fp_status.float_exception_flags & FPUS_IE) { Mixing bit masks. s/FPUS_IE/float_status_invalid/ r~