diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2023-03-02 18:57:56 -0800 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2023-03-07 20:44:08 +0000 |
| commit | 4ea5fe997db4c5d893b69072f488880c07857a54 (patch) | |
| tree | 8a1b3ff28c3fae82f1b62224619a2f1ead68bcfa /target/arm/gdbstub64.c | |
| parent | 379b42e8b7681ebea45cde4af8ffd1694f98949d (diff) | |
| download | focaccia-qemu-4ea5fe997db4c5d893b69072f488880c07857a54.tar.gz focaccia-qemu-4ea5fe997db4c5d893b69072f488880c07857a54.zip | |
gdbstub: move register helpers into standalone include
These inline helpers are all used by target specific code so move them out of the general header so we don't needlessly pollute the rest of the API with target specific stuff. Note we have to include cpu.h in semihosting as it was relying on a side effect before. Reviewed-by: Taylor Simpson <tsimpson@quicinc.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230302190846.2593720-21-alex.bennee@linaro.org> Message-Id: <20230303025805.625589-21-richard.henderson@linaro.org>
Diffstat (limited to 'target/arm/gdbstub64.c')
| -rw-r--r-- | target/arm/gdbstub64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/gdbstub64.c b/target/arm/gdbstub64.c index 3bee892fb7..ec1e07f139 100644 --- a/target/arm/gdbstub64.c +++ b/target/arm/gdbstub64.c @@ -20,7 +20,7 @@ #include "qemu/log.h" #include "cpu.h" #include "internals.h" -#include "exec/gdbstub.h" +#include "gdbstub/helpers.h" int aarch64_cpu_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n) { |