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-i386/exec.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'target-i386/exec.h') diff --git a/target-i386/exec.h b/target-i386/exec.h index 4ff3c573ca..fc8945b964 100644 --- a/target-i386/exec.h +++ b/target-i386/exec.h @@ -327,3 +327,9 @@ static inline void cpu_load_efer(CPUState *env, uint64_t val) if (env->efer & MSR_EFER_SVME) env->hflags |= HF_SVME_MASK; } + +static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb) +{ + env->eip = tb->pc - tb->cs_base; +} + -- cgit v1.2.1