diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-11-14 19:03:11 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-01-14 17:13:53 +0100 |
| commit | 81ddae7c3095065466d235f782aa2af620db78d0 (patch) | |
| tree | fbebf8977604cfd3d6cf37ebf25fc79947ab7c7d /target/mips/gdbstub.c | |
| parent | 9bcd41d41fb4fd9efbc2fd657a4a12c614e78412 (diff) | |
| download | focaccia-qemu-81ddae7c3095065466d235f782aa2af620db78d0.tar.gz focaccia-qemu-81ddae7c3095065466d235f782aa2af620db78d0.zip | |
target/mips: Extract FPU helpers to 'fpu_helper.h'
Extract FPU specific helpers from "internal.h" to "fpu_helper.h". Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20201120210844.2625602-2-f4bug@amsat.org>
Diffstat (limited to 'target/mips/gdbstub.c')
| -rw-r--r-- | target/mips/gdbstub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/gdbstub.c b/target/mips/gdbstub.c index e39f8d75cf..f1c2a2cf6d 100644 --- a/target/mips/gdbstub.c +++ b/target/mips/gdbstub.c @@ -21,6 +21,7 @@ #include "cpu.h" #include "internal.h" #include "exec/gdbstub.h" +#include "fpu_helper.h" int mips_cpu_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n) { |