Commit 7e15e603 authored by Edgar E. Iglesias's avatar Edgar E. Iglesias
Browse files

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
parent 2a44f7f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -217,7 +217,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] & (P_FLAG | U_FLAG | X_FLAG);
    flags |= env->dslot;
    cs_base = 0;
    pc = env->pc;