Commit 7e15e60388b38e12cf20ca0925bfff29bd61df1c

Authored by edgar_igl
1 parent 2a44f7f1

CRIS: Add the P flag to the tb dependent flags.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4685 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
cpu-exec.c
... ... @@ -217,7 +217,7 @@ static inline TranslationBlock *tb_find_fast(void)
217 217 cs_base = 0;
218 218 pc = env->pc;
219 219 #elif defined(TARGET_CRIS)
220   - flags = env->pregs[PR_CCS] & (U_FLAG | X_FLAG);
  220 + flags = env->pregs[PR_CCS] & (P_FLAG | U_FLAG | X_FLAG);
221 221 flags |= env->dslot;
222 222 cs_base = 0;
223 223 pc = env->pc;
... ...