summaryrefslogtreecommitdiff
path: root/target-mips
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2011-05-04 13:34:26 -0700
committerBlue Swirl <blauwirbel@gmail.com>2011-05-08 16:55:23 +0000
commitce0c6930cc2c199eee2d391e23759204a235b162 (patch)
treed75989930dc25cdf05bf39cf0ed943c0f4b4beed /target-mips
parent3125f76335f54e17e2b41621184c9cda1c2b238e (diff)
downloadqemu-ce0c6930cc2c199eee2d391e23759204a235b162.tar.gz
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>
Diffstat (limited to 'target-mips')
-rw-r--r--target-mips/exec.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/target-mips/exec.h b/target-mips/exec.h
index b3c5a13f56..607edf12ca 100644
--- a/target-mips/exec.h
+++ b/target-mips/exec.h
@@ -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;
}