summaryrefslogtreecommitdiff
path: root/target-alpha/exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'target-alpha/exec.h')
-rw-r--r--target-alpha/exec.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/target-alpha/exec.h b/target-alpha/exec.h
index 9ea70305ef..77eaf53c10 100644
--- a/target-alpha/exec.h
+++ b/target-alpha/exec.h
@@ -48,10 +48,15 @@ static always_inline void regs_to_env(void)
{
}
+static always_inline int cpu_has_work(CPUState *env)
+{
+ return (env->interrupt_request & CPU_INTERRUPT_HARD);
+}
+
static always_inline int cpu_halted(CPUState *env) {
if (!env->halted)
return 0;
- if (env->interrupt_request & CPU_INTERRUPT_HARD) {
+ if (cpu_has_work(env)) {
env->halted = 0;
return 0;
}