From eda48c344f35e5bd511dea3e8be56fb08c19b399 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Sat, 12 Mar 2011 17:43:56 +0100 Subject: inline cpu_halted into sole caller All implementations are now the same, and there is only one caller, so inline the function there. Signed-off-by: Paolo Bonzini Signed-off-by: Blue Swirl --- target-sparc/exec.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'target-sparc') diff --git a/target-sparc/exec.h b/target-sparc/exec.h index f811571..f5c221e 100644 --- a/target-sparc/exec.h +++ b/target-sparc/exec.h @@ -22,16 +22,6 @@ static inline int cpu_has_work(CPUState *env1) } -static inline int cpu_halted(CPUState *env1) { - if (!env1->halted) - return 0; - if (cpu_has_work(env1)) { - env1->halted = 0; - return 0; - } - return EXCP_HALTED; -} - static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb) { env->pc = tb->pc; -- cgit v1.1