diff options
Diffstat (limited to 'cpu-target.c')
-rw-r--r-- | cpu-target.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/cpu-target.c b/cpu-target.c index 1c90a30..f030e2c 100644 --- a/cpu-target.c +++ b/cpu-target.c @@ -18,20 +18,14 @@ */ #include "qemu/osdep.h" -#include "cpu.h" -#include "system/accel-ops.h" +#include "accel/accel-cpu-ops.h" #include "system/cpus.h" #include "exec/cpu-common.h" -#include "exec/tswap.h" #include "exec/replay-core.h" #include "exec/log.h" #include "hw/core/cpu.h" #include "trace/trace-root.h" -/* Validate correct placement of CPUArchState. */ -QEMU_BUILD_BUG_ON(offsetof(ArchCPU, parent_obj) != 0); -QEMU_BUILD_BUG_ON(offsetof(ArchCPU, env) != sizeof(CPUState)); - /* enable or disable single step mode. EXCP_DEBUG is returned by the CPU loop after each instruction */ void cpu_single_step(CPUState *cpu, int enabled) @@ -85,9 +79,3 @@ void cpu_abort(CPUState *cpu, const char *fmt, ...) #endif abort(); } - -#undef target_big_endian -bool target_big_endian(void) -{ - return TARGET_BIG_ENDIAN; -} |