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/machine.c | |
parent | 9bcd41d41fb4fd9efbc2fd657a4a12c614e78412 (diff) | |
download | qemu-81ddae7c3095065466d235f782aa2af620db78d0.zip qemu-81ddae7c3095065466d235f782aa2af620db78d0.tar.gz qemu-81ddae7c3095065466d235f782aa2af620db78d0.tar.bz2 |
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/machine.c')
-rw-r--r-- | target/mips/machine.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/machine.c b/target/mips/machine.c index 77afe65..b5fda6a 100644 --- a/target/mips/machine.c +++ b/target/mips/machine.c @@ -2,6 +2,7 @@ #include "cpu.h" #include "internal.h" #include "migration/cpu.h" +#include "fpu_helper.h" static int cpu_post_load(void *opaque, int version_id) { |