From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KnUP5-0000mf-SH for qemu-devel@nongnu.org; Wed, 08 Oct 2008 04:28:19 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KnUP4-0000mT-Ql for qemu-devel@nongnu.org; Wed, 08 Oct 2008 04:28:19 -0400 Received: from [199.232.76.173] (port=34547 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KnUP4-0000mQ-LZ for qemu-devel@nongnu.org; Wed, 08 Oct 2008 04:28:18 -0400 Received: from savannah.gnu.org ([199.232.41.3]:36426 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 1KnUP4-0008UF-3z for qemu-devel@nongnu.org; Wed, 08 Oct 2008 04:28:18 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KnUP3-00089b-3H for qemu-devel@nongnu.org; Wed, 08 Oct 2008 08:28:17 +0000 Received: from edgar_igl by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KnUP2-00089V-N3 for qemu-devel@nongnu.org; Wed, 08 Oct 2008 08:28:16 +0000 MIME-Version: 1.0 Errors-To: edgar_igl Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: "Edgar E. Iglesias" Message-Id: Date: Wed, 08 Oct 2008 08:28:16 +0000 Subject: [Qemu-devel] [5447] CRIS: Correct typos. 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: 5447 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5447 Author: edgar_igl Date: 2008-10-08 08:28:16 +0000 (Wed, 08 Oct 2008) Log Message: ----------- CRIS: Correct typos. Modified Paths: -------------- trunk/target-cris/translate.c Modified: trunk/target-cris/translate.c =================================================================== --- trunk/target-cris/translate.c 2008-10-07 22:54:52 UTC (rev 5446) +++ trunk/target-cris/translate.c 2008-10-08 08:28:16 UTC (rev 5447) @@ -2994,14 +2994,13 @@ } } -#if defined(CONFIG_USER_ONLY) +#if !defined(CONFIG_USER_ONLY) /* Single-stepping ? */ if (dc->tb_flags & S_FLAG) { int l1; l1 = gen_new_label(); - tcg_gen_brcondi_tl(TCG_COND_NE, - cpu_PR[PR_SPC], tcg_const_tl(dc->pc), l1); + tcg_gen_brcondi_tl(TCG_COND_NE, cpu_PR[PR_SPC], dc->pc, l1); /* We treat SPC as a break with an odd trap vector. */ cris_evaluate_flags (dc); t_gen_mov_env_TN(trap_vector, tcg_const_tl(3));