diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-03-14 10:39:19 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-23 14:08:36 -0700 |
| commit | 3e57baa22ea6892d1b8c212253b2859be30f45ee (patch) | |
| tree | ac1d320d4561beec30a9687a21738d7a0f15b249 /target/ppc/cpu_init.c | |
| parent | 17a71e89693e17d60f73a00b4cea6963073152e3 (diff) | |
| download | focaccia-qemu-3e57baa22ea6892d1b8c212253b2859be30f45ee.tar.gz focaccia-qemu-3e57baa22ea6892d1b8c212253b2859be30f45ee.zip | |
include/exec: Split out watchpoint.h
Relatively few objects in qemu care about watchpoints, so split out to a new header. Removes an instance of CONFIG_USER_ONLY from hw/core/cpu.h. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/ppc/cpu_init.c')
| -rw-r--r-- | target/ppc/cpu_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/ppc/cpu_init.c b/target/ppc/cpu_init.c index f81cb680fc..17f0f3d3ff 100644 --- a/target/ppc/cpu_init.c +++ b/target/ppc/cpu_init.c @@ -40,7 +40,7 @@ #include "qemu/cutils.h" #include "disas/capstone.h" #include "fpu/softfloat.h" - +#include "exec/watchpoint.h" #include "helper_regs.h" #include "internal.h" #include "spr_common.h" |