diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2010-06-29 09:58:50 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-07-03 09:48:12 +0300 |
commit | 10eb0cc03c20b232356edb367516939d6d7bb862 (patch) | |
tree | aa231e9b32dc701736ea0c8d193413aaabc3659c /target-sh4 | |
parent | 83dae09588e4d946a1c5e3916cdb4b6d6126858e (diff) |
move cpu_pc_from_tb to target-*/exec.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-sh4')
-rw-r--r-- | target-sh4/cpu.h | 6 | ||||
-rw-r--r-- | target-sh4/exec.h | 6 |
2 files changed, 6 insertions, 6 deletions
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 */ |