MSA means 'MIPS SIMD Architecture' and is defined as a Module by
MIPS.
To keep the directory sorted, we use the 'mod' prefix for MIPS
modules. Rename msa_helper.c as mod-msa_helper.c.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
target/mips/{msa_helper.c => mod-msa_helper.c} | 0
target/mips/meson.build | 3 ++-
2 files changed, 2 insertions(+), 1 deletion(-)
rename target/mips/{msa_helper.c => mod-msa_helper.c} (100%)
diff --git a/target/mips/msa_helper.c b/target/mips/mod-msa_helper.c
similarity index 100%
rename from target/mips/msa_helper.c
rename to target/mips/mod-msa_helper.c
diff --git a/target/mips/meson.build b/target/mips/meson.build
index 681a5524c0e..35dbbbf6519 100644
--- a/target/mips/meson.build
+++ b/target/mips/meson.build
@@ -6,8 +6,9 @@
'gdbstub.c',
'helper.c',
'lmmi_helper.c',
- 'msa_helper.c',
'op_helper.c',
+ 'mod-msa_helper.c',
+
'translate.c',
))
mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
--
2.26.2