diff options
author | Andreas Färber | 2013-06-28 19:31:32 +0200 |
---|---|---|
committer | Andreas Färber | 2013-07-23 02:41:32 +0200 |
commit | bdf7ae5bbdb3f050d97862b2ba0261fa902ebc53 (patch) | |
tree | dec1f74f86690f2f5e7e9682e82ae08e40c0ac49 /target-i386/cpu.h | |
parent | target-unicore32: Implement CPUClass::set_pc() (diff) | |
download | qemu-bdf7ae5bbdb3f050d97862b2ba0261fa902ebc53.tar.gz qemu-bdf7ae5bbdb3f050d97862b2ba0261fa902ebc53.tar.xz qemu-bdf7ae5bbdb3f050d97862b2ba0261fa902ebc53.zip |
cpu: Introduce CPUClass::synchronize_from_tb() for cpu_pc_from_tb()
Where no extra implementation is needed, fall back to CPUClass::set_pc().
Acked-by: Michael Walle <michael@walle.cc> (for lm32)
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 2d005b3ce9..cedefdc423 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1148,11 +1148,6 @@ static inline bool cpu_has_work(CPUState *cs) #include "exec/exec-all.h" -static inline void cpu_pc_from_tb(CPUX86State *env, TranslationBlock *tb) -{ - env->eip = tb->pc - tb->cs_base; -} - static inline void cpu_get_tb_cpu_state(CPUX86State *env, target_ulong *pc, target_ulong *cs_base, int *flags) { |