From 10eb0cc03c20b232356edb367516939d6d7bb862 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Tue, 29 Jun 2010 09:58:50 +0200 Subject: move cpu_pc_from_tb to target-*/exec.h Signed-off-by: Paolo Bonzini Signed-off-by: Blue Swirl --- target-sh4/cpu.h | 6 ------ target-sh4/exec.h | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'target-sh4') diff --git a/target-sh4/cpu.h b/target-sh4/cpu.h index f8b1680296..f2dee37878 100644 --- a/target-sh4/cpu.h +++ b/target-sh4/cpu.h @@ -303,12 +303,6 @@ static inline int cpu_ptel_pr (uint32_t ptel) #define PTEA_TC (1 << 3) #define cpu_ptea_tc(ptea) (((ptea) & PTEA_TC) >> 3) -static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb) -{ - env->pc = tb->pc; - env->flags = tb->flags; -} - #define TB_FLAG_PENDING_MOVCA (1 << 4) static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc, diff --git a/target-sh4/exec.h b/target-sh4/exec.h index edd667d703..2999c023c0 100644 --- a/target-sh4/exec.h +++ b/target-sh4/exec.h @@ -47,4 +47,10 @@ static inline int cpu_halted(CPUState *env) { #include "softmmu_exec.h" #endif +static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb) +{ + env->pc = tb->pc; + env->flags = tb->flags; +} + #endif /* _EXEC_SH4_H */ -- cgit v1.2.3