Commit 17a594d737131510b3aa12c82dab7a4045afa914

Authored by edgar_igl
1 parent 6dd2db52

CRIS: Remove X flag from tb flags.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4378 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
cpu-exec.c
@@ -258,7 +258,7 @@ static inline TranslationBlock *tb_find_fast(void) @@ -258,7 +258,7 @@ static inline TranslationBlock *tb_find_fast(void)
258 cs_base = 0; 258 cs_base = 0;
259 pc = env->pc; 259 pc = env->pc;
260 #elif defined(TARGET_CRIS) 260 #elif defined(TARGET_CRIS)
261 - flags = env->pregs[PR_CCS] & (U_FLAG | X_FLAG); 261 + flags = env->pregs[PR_CCS] & U_FLAG;
262 cs_base = 0; 262 cs_base = 0;
263 pc = env->pc; 263 pc = env->pc;
264 #else 264 #else