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/kvm.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/kvm.c')
-rw-r--r-- | target/mips/kvm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/kvm.c b/target/mips/kvm.c index 4776925..a5b6fe3 100644 --- a/target/mips/kvm.c +++ b/target/mips/kvm.c @@ -24,6 +24,7 @@ #include "sysemu/runstate.h" #include "kvm_mips.h" #include "hw/boards.h" +#include "fpu_helper.h" #define DEBUG_KVM 0 |