From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D9CMd-0001zd-DA for qemu-devel@nongnu.org; Wed, 09 Mar 2005 20:21:24 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D9CMS-0001t6-9L for qemu-devel@nongnu.org; Wed, 09 Mar 2005 20:21:16 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D9CMR-0001oX-HM for qemu-devel@nongnu.org; Wed, 09 Mar 2005 20:21:11 -0500 Received: from [65.74.133.9] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1D9BjY-0001SC-N7 for qemu-devel@nongnu.org; Wed, 09 Mar 2005 19:41:00 -0500 From: Paul Brook Date: Thu, 10 Mar 2005 00:40:57 +0000 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_Ze5LCT6c2gbIsRs" Message-Id: <200503100040.57921.paul@codesourcery.com> Subject: [Qemu-devel] [patch] SPARC FORCE_RET fix 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 --Boundary-00=_Ze5LCT6c2gbIsRs Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Annother missing FORCE_RET, this time sparc guest on i386 host. Paul --Boundary-00=_Ze5LCT6c2gbIsRs Content-Type: text/x-diff; charset="us-ascii"; name="patch.qemu_sparc_forceret" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch.qemu_sparc_forceret" Index: target-sparc/op.c =================================================================== RCS file: /cvsroot/qemu/qemu/target-sparc/op.c,v retrieving revision 1.14 diff -u -p -r1.14 op.c --- target-sparc/op.c 13 Feb 2005 20:11:30 -0000 1.14 +++ target-sparc/op.c 10 Mar 2005 00:39:30 -0000 @@ -765,6 +765,7 @@ void OPPROTO op_eval_fbue(void) { // 0 or 3 T2 = !(FFLAG_SET(FSR_FCC1) ^ FFLAG_SET(FSR_FCC0)); + FORCE_RET(); } void OPPROTO op_eval_fbge(void) --Boundary-00=_Ze5LCT6c2gbIsRs--