On 11/21/20 8:39 PM, Richard Henderson wrote: > On 11/20/20 1:08 PM, Philippe Mathieu-Daudé wrote: >> Extract FPU specific helpers from "internal.h" to "fpu_helper.h". >> >> Signed-off-by: Philippe Mathieu-Daudé <f4...@amsat.org> >> --- >> target/mips/fpu_helper.h | 50 ++++++++++++++++++++++++++++++++++++++ >> target/mips/internal.h | 42 -------------------------------- >> linux-user/mips/cpu_loop.c | 1 + >> target/mips/fpu_helper.c | 1 + >> target/mips/gdbstub.c | 1 + >> target/mips/kvm.c | 1 + >> target/mips/machine.c | 1 + >> target/mips/msa_helper.c | 1 + >> target/mips/translate.c | 1 + >> 9 files changed, 57 insertions(+), 42 deletions(-) >> create mode 100644 target/mips/fpu_helper.h > > Reviewed-by: Richard Henderson <richard.hender...@linaro.org> > >> +extern unsigned int ieee_rm[]; > > Note for future cleanup: const FloatRoundMode.
Good point, cleaner. Thanks! Phil.