mirror of https://github.com/xemu-project/xemu.git
target-mips: Do not check CPU_INTERRUPT_TIMER.
This bit is never set, therefore we should not read it either. Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
3125f76335
commit
ce0c6930cc
|
@ -29,10 +29,6 @@ static inline int cpu_has_work(CPUState *env)
|
|||
has_work = 1;
|
||||
}
|
||||
|
||||
if (env->interrupt_request & CPU_INTERRUPT_TIMER) {
|
||||
has_work = 1;
|
||||
}
|
||||
|
||||
return has_work;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue