diff options
author | Paolo Bonzini | 2010-06-29 09:58:50 +0200 |
---|---|---|
committer | Blue Swirl | 2010-07-03 08:48:12 +0200 |
commit | 10eb0cc03c20b232356edb367516939d6d7bb862 (patch) | |
tree | aa231e9b32dc701736ea0c8d193413aaabc3659c /target-i386/exec.h | |
parent | remove unused stuff from */exec.h (diff) | |
download | qemu-10eb0cc03c20b232356edb367516939d6d7bb862.tar.gz qemu-10eb0cc03c20b232356edb367516939d6d7bb862.tar.xz qemu-10eb0cc03c20b232356edb367516939d6d7bb862.zip |
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-i386/exec.h')
-rw-r--r-- | target-i386/exec.h | 6 |
1 files changed, 6 insertions, 0 deletions
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; +} + |