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/op_helper.c | |
parent | 9bcd41d41fb4fd9efbc2fd657a4a12c614e78412 (diff) |
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/op_helper.c')
-rw-r--r-- | target/mips/op_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/mips/op_helper.c b/target/mips/op_helper.c index 5aa97902e9..3386b8228e 100644 --- a/target/mips/op_helper.c +++ b/target/mips/op_helper.c @@ -24,7 +24,7 @@ #include "exec/helper-proto.h" #include "exec/exec-all.h" #include "exec/memop.h" - +#include "fpu_helper.h" /*****************************************************************************/ /* Exceptions processing helpers */ |