summaryrefslogtreecommitdiff
path: root/target-lm32/cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'target-lm32/cpu.h')
-rw-r--r--target-lm32/cpu.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/target-lm32/cpu.h b/target-lm32/cpu.h
index da80469f51..7243b4f7c7 100644
--- a/target-lm32/cpu.h
+++ b/target-lm32/cpu.h
@@ -253,8 +253,10 @@ static inline void cpu_get_tb_cpu_state(CPULM32State *env, target_ulong *pc,
*flags = 0;
}
-static inline bool cpu_has_work(CPULM32State *env)
+static inline bool cpu_has_work(CPUState *cpu)
{
+ CPULM32State *env = &LM32_CPU(cpu)->env;
+
return env->interrupt_request & CPU_INTERRUPT_HARD;
}