cpu_halted() has been removed on all targets in commit eda48c344f35e5bd511dea3e8be56fb08c19b399. Also remove it on unicore32.
Cc: Guan Xuetao <g...@mprc.pku.edu.cn> Signed-off-by: Aurelien Jarno <aurel...@aurel32.net> --- target-unicore32/exec.h | 15 --------------- 1 files changed, 0 insertions(+), 15 deletions(-) diff --git a/target-unicore32/exec.h b/target-unicore32/exec.h index 4ab55f4..498df23 100644 --- a/target-unicore32/exec.h +++ b/target-unicore32/exec.h @@ -32,19 +32,4 @@ static inline int cpu_has_work(CPUState *env) (CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB); } -static inline int cpu_halted(CPUState *env) -{ - if (!env->halted) { - return 0; - } - /* An interrupt wakes the CPU even if the I and R ASR bits are - set. We use EXITTB to silently wake CPU without causing an - actual interrupt. */ - if (cpu_has_work(env)) { - env->halted = 0; - return 0; - } - return EXCP_HALTED; -} - #endif /* __UC32_EXEC_H__ */ -- 1.7.2.3