diff options
Diffstat (limited to 'target-m68k/cpu.h')
-rw-r--r-- | target-m68k/cpu.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/target-m68k/cpu.h b/target-m68k/cpu.h index a6687b11a7..48c752c83f 100644 --- a/target-m68k/cpu.h +++ b/target-m68k/cpu.h @@ -231,8 +231,12 @@ static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) } #endif -#define CPU_PC_FROM_TB(env, tb) env->pc = tb->pc - #include "cpu-all.h" +#include "exec-all.h" + +static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb) +{ + env->pc = tb->pc; +} #endif |