diff options
Diffstat (limited to 'target-s390x/exec.h')
-rw-r--r-- | target-s390x/exec.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/target-s390x/exec.h b/target-s390x/exec.h index 9ababe174f..d40640b675 100644 --- a/target-s390x/exec.h +++ b/target-s390x/exec.h @@ -29,12 +29,6 @@ register struct CPUS390XState *env asm(AREG0); #include "softmmu_exec.h" #endif /* !defined(CONFIG_USER_ONLY) */ -static inline bool cpu_has_work(CPUState *env) -{ - return (env->interrupt_request & CPU_INTERRUPT_HARD) && - (env->psw.mask & PSW_MASK_EXT); -} - static inline void regs_to_env(void) { } @@ -42,9 +36,3 @@ static inline void regs_to_env(void) static inline void env_to_regs(void) { } - -static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock* tb) -{ - env->psw.addr = tb->pc; -} - |