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-unicore32 | |
| 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-unicore32')
| -rw-r--r-- | target-unicore32/cpu.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-unicore32/cpu.h b/target-unicore32/cpu.h index d4be5252f3..967511e3f6 100644 --- a/target-unicore32/cpu.h +++ b/target-unicore32/cpu.h @@ -146,11 +146,6 @@ static inline int cpu_mmu_index(CPUUniCore32State *env) #include "cpu-qom.h" #include "exec/exec-all.h" -static inline void cpu_pc_from_tb(CPUUniCore32State *env, TranslationBlock *tb) -{ - env->regs[31] = tb->pc; -} - static inline void cpu_get_tb_cpu_state(CPUUniCore32State *env, target_ulong *pc, target_ulong *cs_base, int *flags) { |
