diff options
Diffstat (limited to 'target-s390x/exec.h')
-rw-r--r-- | target-s390x/exec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-s390x/exec.h b/target-s390x/exec.h index 5198359804..13dc7dd066 100644 --- a/target-s390x/exec.h +++ b/target-s390x/exec.h @@ -22,9 +22,14 @@ register struct CPUS390XState *env asm(AREG0); +#include "config.h" #include "cpu.h" #include "exec-all.h" +#if !defined(CONFIG_USER_ONLY) +#include "softmmu_exec.h" +#endif /* !defined(CONFIG_USER_ONLY) */ + static inline int cpu_has_work(CPUState *env) { return env->interrupt_request & CPU_INTERRUPT_HARD; // guess |