This is no longer required in the generic header. Add includes where required elsewhere in the code base.
Signed-off-by: Richard Henderson <[email protected]> --- include/hw/core/cpu.h | 1 - accel/tcg/tcg-accel-ops.c | 1 + cpu-common.c | 1 + gdbstub/system.c | 1 + gdbstub/user.c | 1 + target/i386/kvm/kvm.c | 1 + target/ppc/kvm.c | 1 + target/s390x/kvm/kvm.c | 1 + target/xtensa/helper.c | 1 + 9 files changed, 8 insertions(+), 1 deletion(-) diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h index 481646f5b9..5c01908f83 100644 --- a/include/hw/core/cpu.h +++ b/include/hw/core/cpu.h @@ -22,7 +22,6 @@ #include "hw/core/qdev.h" #include "disas/dis-asm.h" -#include "exec/breakpoint.h" #include "exec/hwaddr.h" #include "exec/vaddr.h" #include "exec/memattrs.h" diff --git a/accel/tcg/tcg-accel-ops.c b/accel/tcg/tcg-accel-ops.c index c59ab85606..76af8d67c0 100644 --- a/accel/tcg/tcg-accel-ops.c +++ b/accel/tcg/tcg-accel-ops.c @@ -31,6 +31,7 @@ #include "accel/tcg/cpu-loop.h" #include "system/tcg.h" #include "system/replay.h" +#include "exec/breakpoint.h" #include "exec/icount.h" #include "qemu/main-loop.h" #include "qemu/guest-random.h" diff --git a/cpu-common.c b/cpu-common.c index ba2676cbad..af64bb1126 100644 --- a/cpu-common.c +++ b/cpu-common.c @@ -20,6 +20,7 @@ #include "qemu/osdep.h" #include "qemu/main-loop.h" #include "exec/cpu-common.h" +#include "exec/breakpoint.h" #include "hw/core/cpu.h" #include "qemu/lockable.h" #include "trace/trace-root.h" diff --git a/gdbstub/system.c b/gdbstub/system.c index c77d067ab4..724fd24c00 100644 --- a/gdbstub/system.c +++ b/gdbstub/system.c @@ -15,6 +15,7 @@ #include "qemu/error-report.h" #include "qemu/cutils.h" #include "exec/gdbstub.h" +#include "exec/breakpoint.h" #include "gdbstub/syscalls.h" #include "gdbstub/commands.h" #include "exec/hwaddr.h" diff --git a/gdbstub/user.c b/gdbstub/user.c index 9e6f9a6f37..0a61bd7d92 100644 --- a/gdbstub/user.c +++ b/gdbstub/user.c @@ -14,6 +14,7 @@ #include "qemu/cutils.h" #include "qemu/sockets.h" #include "qapi/error.h" +#include "exec/breakpoint.h" #include "exec/hwaddr.h" #include "exec/gdbstub.h" #include "gdbstub/commands.h" diff --git a/target/i386/kvm/kvm.c b/target/i386/kvm/kvm.c index 4272b6770c..8161831de2 100644 --- a/target/i386/kvm/kvm.c +++ b/target/i386/kvm/kvm.c @@ -68,6 +68,7 @@ #include "hw/pci/msi.h" #include "hw/pci/msix.h" #include "migration/blocker.h" +#include "exec/breakpoint.h" #include "exec/memattrs.h" #include "exec/target_page.h" #include "trace.h" diff --git a/target/ppc/kvm.c b/target/ppc/kvm.c index aa21cab50e..1a093e1f83 100644 --- a/target/ppc/kvm.c +++ b/target/ppc/kvm.c @@ -40,6 +40,7 @@ #include "system/watchdog.h" #include "trace.h" #include "gdbstub/enums.h" +#include "exec/breakpoint.h" #include "exec/memattrs.h" #include "system/ramblock.h" #include "system/hostmem.h" diff --git a/target/s390x/kvm/kvm.c b/target/s390x/kvm/kvm.c index 72031a5714..6f7f75f601 100644 --- a/target/s390x/kvm/kvm.c +++ b/target/s390x/kvm/kvm.c @@ -48,6 +48,7 @@ #include "hw/s390x/s390-pci-bus.h" #include "hw/s390x/ipl.h" #include "hw/s390x/ebcdic.h" +#include "exec/breakpoint.h" #include "exec/memattrs.h" #include "hw/s390x/s390-virtio-ccw.h" #include "hw/s390x/s390-hypercall.h" diff --git a/target/xtensa/helper.c b/target/xtensa/helper.c index 5a0e865514..0db5502287 100644 --- a/target/xtensa/helper.c +++ b/target/xtensa/helper.c @@ -30,6 +30,7 @@ #include "cpu.h" #include "exec/cputlb.h" #include "exec/target_page.h" +#include "exec/breakpoint.h" #include "gdbstub/helpers.h" #include "exec/helper-proto.h" #include "accel/tcg/cpu-loop.h" -- 2.43.0
