qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [4597] CRIS: Re-add the X flag to the tb flags, it allows f


From: Edgar E. Iglesias
Subject: [Qemu-devel] [4597] CRIS: Re-add the X flag to the tb flags, it allows for better code generation and is practially always cleared.
Date: Tue, 27 May 2008 21:15:58 +0000

Revision: 4597
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4597
Author:   edgar_igl
Date:     2008-05-27 21:15:56 +0000 (Tue, 27 May 2008)

Log Message:
-----------
CRIS: Re-add the X flag to the tb flags, it allows for better code generation 
and is practially always cleared.

Modified Paths:
--------------
    trunk/cpu-exec.c

Modified: trunk/cpu-exec.c
===================================================================
--- trunk/cpu-exec.c    2008-05-27 21:13:40 UTC (rev 4596)
+++ trunk/cpu-exec.c    2008-05-27 21:15:56 UTC (rev 4597)
@@ -218,7 +218,7 @@
     cs_base = 0;
     pc = env->pc;
 #elif defined(TARGET_CRIS)
-    flags = env->pregs[PR_CCS] & U_FLAG;
+    flags = env->pregs[PR_CCS] & (U_FLAG | X_FLAG);
     flags |= env->dslot;
     cs_base = 0;
     pc = env->pc;






reply via email to

[Prev in Thread] Current Thread [Next in Thread]