summaryrefslogtreecommitdiff
path: root/cpu-exec.c
diff options
context:
space:
mode:
authoredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-07 15:27:14 +0000
committeredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-07 15:27:14 +0000
commit17a594d737131510b3aa12c82dab7a4045afa914 (patch)
tree659ab11e52e35ba50ae4a687bd74b8b6cbde9797 /cpu-exec.c
parent6dd2db52a9b74984a7b14d4a7dc9d55af1c80a1c (diff)
downloadqemu-17a594d737131510b3aa12c82dab7a4045afa914.tar.gz
CRIS: Remove X flag from tb flags.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4378 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-exec.c')
-rw-r--r--cpu-exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-exec.c b/cpu-exec.c
index fea47cb7db..fb31b43861 100644
--- a/cpu-exec.c
+++ b/cpu-exec.c
@@ -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