diff options
Diffstat (limited to 'target-cris')
-rw-r--r-- | target-cris/exec.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target-cris/exec.h b/target-cris/exec.h index 93ce768d7..34c0132ce 100644 --- a/target-cris/exec.h +++ b/target-cris/exec.h @@ -37,9 +37,7 @@ static inline int cpu_halted(CPUState *env) { if (!env->halted) return 0; - /* IRQ, NMI and GURU execeptions wakes us up. */ - if (env->interrupt_request - & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI)) { + if (cpu_has_work(env)) { env->halted = 0; return 0; } |