diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-03-15 16:58:45 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-19 16:42:29 +0200 |
commit | 33c11879fd422b759483ed25fef133ea900ea8d7 (patch) | |
tree | fe171757f860842a3c5c76474ec7b11bc08c51c8 /target-alpha | |
parent | 35c5a52d1d016c632aed6137549754ca53446c92 (diff) | |
download | qemu-33c11879fd422b759483ed25fef133ea900ea8d7.zip |
qemu-common: push cpu.h inclusion out of qemu-common.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-alpha')
-rw-r--r-- | target-alpha/gdbstub.c | 1 | ||||
-rw-r--r-- | target-alpha/machine.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/target-alpha/gdbstub.c b/target-alpha/gdbstub.c index 199f028425..d64bcccfa0 100644 --- a/target-alpha/gdbstub.c +++ b/target-alpha/gdbstub.c @@ -19,6 +19,7 @@ */ #include "qemu/osdep.h" #include "qemu-common.h" +#include "cpu.h" #include "exec/gdbstub.h" int alpha_cpu_gdb_read_register(CPUState *cs, uint8_t *mem_buf, int n) diff --git a/target-alpha/machine.c b/target-alpha/machine.c index 3f72943ca6..710b7835b4 100644 --- a/target-alpha/machine.c +++ b/target-alpha/machine.c @@ -1,4 +1,6 @@ #include "qemu/osdep.h" +#include "qemu-common.h" +#include "cpu.h" #include "hw/hw.h" #include "hw/boards.h" #include "migration/cpu.h" |