From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MsED3-0002Dd-4E for qemu-devel@nongnu.org; Mon, 28 Sep 2009 07:16:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MsECx-0002CP-E8 for qemu-devel@nongnu.org; Mon, 28 Sep 2009 07:15:59 -0400 Received: from [199.232.76.173] (port=41155 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MsECx-0002CK-7c for qemu-devel@nongnu.org; Mon, 28 Sep 2009 07:15:55 -0400 Received: from mx20.gnu.org ([199.232.41.8]:16702) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MsECx-00068D-2L for qemu-devel@nongnu.org; Mon, 28 Sep 2009 07:15:55 -0400 Received: from [65.74.133.4] (helo=mail.codesourcery.com) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MsECt-000225-BO for qemu-devel@nongnu.org; Mon, 28 Sep 2009 07:15:51 -0400 From: Paul Brook Subject: Re: [Qemu-devel] tcg_abort() Date: Mon, 28 Sep 2009 12:15:40 +0100 References: <4AB1020A.1070807@mlbassoc.com> <761ea48b0909160916y21771671g9399ddf9983ac5c0@mail.gmail.com> <761ea48b0909251548l46efb05v49594cb4d2f72ee2@mail.gmail.com> In-Reply-To: <761ea48b0909251548l46efb05v49594cb4d2f72ee2@mail.gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200909281215.40687.paul@codesourcery.com> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Laurent Desnogues > > Could please try to replace the tcg_abort() on line 773 with these > > two lines? > > Turned out this was wrong, it should have been: > > tcg_out_movi32(s, cond, TCG_REG_R8, addr); > tcg_out32(s, (cond << 28) | 0x012fff30 | TCG_REG_R8); /* blx r8 */ You can not assume blx is available. Paul