From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GmXEe-00040f-90 for qemu-devel@nongnu.org; Tue, 21 Nov 2006 10:08:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GmXEa-0003vd-4V for qemu-devel@nongnu.org; Tue, 21 Nov 2006 10:08:31 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GmXEZ-0003vS-TK for qemu-devel@nongnu.org; Tue, 21 Nov 2006 10:08:28 -0500 Received: from [193.7.176.60] (helo=mail.bawue.net) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GmXEZ-0007Ty-Br for qemu-devel@nongnu.org; Tue, 21 Nov 2006 10:08:27 -0500 Received: from lagash (unknown [195.71.97.210]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bawue.net (Postfix) with ESMTP id B7A76BBCE0 for ; Tue, 21 Nov 2006 16:02:30 +0100 (CET) Received: from ths by lagash with local (Exim 4.63) (envelope-from ) id 1GmX7Z-0003b3-4V for qemu-devel@nongnu.org; Tue, 21 Nov 2006 15:01:13 +0000 Date: Tue, 21 Nov 2006 15:01:13 +0000 Message-ID: <20061121150113.GH12745@networkno.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline From: Thiemo Seufer Subject: [Qemu-devel] [PATCH] Fix sparc build failure Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hello All, this patch fixes a compile error in the sparc emulation. Thiemo Index: qemu-work/target-sparc/op_helper.c =================================================================== --- qemu-work.orig/target-sparc/op_helper.c 2006-11-18 12:49:39.000000000 +0000 +++ qemu-work/target-sparc/op_helper.c 2006-11-18 12:50:13.000000000 +0000 @@ -12,12 +12,12 @@ #ifdef USE_INT_TO_FLOAT_HELPERS void do_fitos(void) { - FT0 = int32_to_float32(*((int32_t *)&FT1)); + FT0 = int32_to_float32(*((int32_t *)&FT1), &env->fp_status); } void do_fitod(void) { - DT0 = int32_to_float64(*((int32_t *)&FT1)); + DT0 = int32_to_float64(*((int32_t *)&FT1), &env->fp_status); } #endif