aboutsummaryrefslogtreecommitdiff
path: root/target/mips/msa.c
AgeCommit message (Collapse)AuthorFilesLines
2021-05-02target/mips: Move msa_reset() to new source filePhilippe Mathieu-Daudé1-0/+60
mips_cpu_reset() is used by all accelerators, and calls msa_reset(), which is defined in msa_helper.c. Beside msa_reset(), the rest of msa_helper.c is only useful to the TCG accelerator. To be able to restrict this helper file to TCG, we need to move msa_reset() out of it. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210428170410.479308-4-f4bug@amsat.org>