From: edgar_igl Date: Fri, 6 Jun 2008 11:24:33 +0000 (+0000) Subject: CRIS: Add the P flag to the tb dependent flags. X-Git-Tag: stefano.display-merge-start~1104 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7e15e60388b38e12cf20ca0925bfff29bd61df1c;p=qemu-xen-4.0-testing.git 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 --- diff --git a/cpu-exec.c b/cpu-exec.c index bf9bcd44..a8e67e8a 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -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;