From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KKq5w-0002XH-DI for qemu-devel@nongnu.org; Mon, 21 Jul 2008 03:46:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KKq5u-0002Ui-Mu for qemu-devel@nongnu.org; Mon, 21 Jul 2008 03:46:07 -0400 Received: from [199.232.76.173] (port=34859 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KKq5u-0002UV-Im for qemu-devel@nongnu.org; Mon, 21 Jul 2008 03:46:06 -0400 Received: from savannah.gnu.org ([199.232.41.3]:35515 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KKq5u-0002SY-1u for qemu-devel@nongnu.org; Mon, 21 Jul 2008 03:46:06 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KKq5s-0005PF-Ly for qemu-devel@nongnu.org; Mon, 21 Jul 2008 07:46:04 +0000 Received: from ths by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KKq5s-0005PB-B7 for qemu-devel@nongnu.org; Mon, 21 Jul 2008 07:46:04 +0000 MIME-Version: 1.0 Errors-To: ths Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Thiemo Seufer Message-Id: Date: Mon, 21 Jul 2008 07:46:04 +0000 Subject: [Qemu-devel] [4916] Fix logging output for MIPS HI, LO registers, by Stefan Weil. 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 Revision: 4916 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4916 Author: ths Date: 2008-07-21 07:46:03 +0000 (Mon, 21 Jul 2008) Log Message: ----------- Fix logging output for MIPS HI, LO registers, by Stefan Weil. Modified Paths: -------------- trunk/target-mips/translate.c Modified: trunk/target-mips/translate.c =================================================================== --- trunk/target-mips/translate.c 2008-07-20 19:13:19 UTC (rev 4915) +++ trunk/target-mips/translate.c 2008-07-21 07:46:03 UTC (rev 4916) @@ -8694,7 +8694,8 @@ int i; cpu_fprintf(f, "pc=0x" TARGET_FMT_lx " HI=0x" TARGET_FMT_lx " LO=0x" TARGET_FMT_lx " ds %04x " TARGET_FMT_lx " %d\n", - env->active_tc.PC, env->active_tc.HI, env->active_tc.LO, env->hflags, env->btarget, env->bcond); + env->active_tc.PC, env->active_tc.HI[0], env->active_tc.LO[0], + env->hflags, env->btarget, env->bcond); for (i = 0; i < 32; i++) { if ((i & 3) == 0) cpu_fprintf(f, "GPR%02d:", i);