CRIS: Remove X flag from tb flags.
authoredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 7 May 2008 15:27:14 +0000 (15:27 +0000)
committeredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 7 May 2008 15:27:14 +0000 (15:27 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4378 c046a42c-6fe2-441c-8c8c-71466251a162

cpu-exec.c

index fea47cb..fb31b43 100644 (file)
@@ -258,7 +258,7 @@ static inline TranslationBlock *tb_find_fast(void)
     cs_base = 0;
     pc = env->pc;
 #elif defined(TARGET_CRIS)
-    flags = env->pregs[PR_CCS] & (U_FLAG | X_FLAG);
+    flags = env->pregs[PR_CCS] & U_FLAG;
     cs_base = 0;
     pc = env->pc;
 #else