From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K4a3o-0008Cl-Bu for qemu-devel@nongnu.org; Fri, 06 Jun 2008 07:24:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K4a3n-0008Bx-Dv for qemu-devel@nongnu.org; Fri, 06 Jun 2008 07:24:43 -0400 Received: from [199.232.76.173] (port=34333 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K4a3n-0008Br-74 for qemu-devel@nongnu.org; Fri, 06 Jun 2008 07:24:43 -0400 Received: from savannah.gnu.org ([199.232.41.3]:59630 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 1K4a3m-0003ES-64 for qemu-devel@nongnu.org; Fri, 06 Jun 2008 07:24:43 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1K4a3e-0007ZX-5m for qemu-devel@nongnu.org; Fri, 06 Jun 2008 11:24:34 +0000 Received: from edgar_igl by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1K4a3d-0007ZT-W8 for qemu-devel@nongnu.org; Fri, 06 Jun 2008 11:24:34 +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: Fri, 06 Jun 2008 11:24:34 +0000 Subject: [Qemu-devel] [4685] CRIS: Add the P flag to the tb dependent flags. 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: 4685 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4685 Author: edgar_igl Date: 2008-06-06 11:24:33 +0000 (Fri, 06 Jun 2008) Log Message: ----------- CRIS: Add the P flag to the tb dependent flags. Modified Paths: -------------- trunk/cpu-exec.c Modified: trunk/cpu-exec.c =================================================================== --- trunk/cpu-exec.c 2008-06-06 11:23:28 UTC (rev 4684) +++ trunk/cpu-exec.c 2008-06-06 11:24:33 UTC (rev 4685) @@ -217,7 +217,7 @@ cs_base = 0; pc = env->pc; #elif defined(TARGET_CRIS) - flags = env->pregs[PR_CCS] & (U_FLAG | X_FLAG); + flags = env->pregs[PR_CCS] & (P_FLAG | U_FLAG | X_FLAG); flags |= env->dslot; cs_base = 0; pc = env->pc;