[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 05/26] target/mips: Rename dsp_helper.c as mod-mips-dsp_helper.c
|
From: |
Philippe Mathieu-Daudé |
|
Subject: |
[PATCH 05/26] target/mips: Rename dsp_helper.c as mod-mips-dsp_helper.c |
|
Date: |
Fri, 20 Nov 2020 22:08:23 +0100 |
'MIPS DSP' is defined as a Module by MIPS, rename it as
mod-mips-dsp_helper.c.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
target/mips/{dsp_helper.c => mod-mips-dsp_helper.c} | 0
target/mips/meson.build | 2 +-
2 files changed, 1 insertion(+), 1 deletion(-)
rename target/mips/{dsp_helper.c => mod-mips-dsp_helper.c} (100%)
diff --git a/target/mips/dsp_helper.c b/target/mips/mod-mips-dsp_helper.c
similarity index 100%
rename from target/mips/dsp_helper.c
rename to target/mips/mod-mips-dsp_helper.c
diff --git a/target/mips/meson.build b/target/mips/meson.build
index f2b1b599abc..cc4677d94dc 100644
--- a/target/mips/meson.build
+++ b/target/mips/meson.build
@@ -1,12 +1,12 @@
mips_ss = ss.source_set()
mips_ss.add(files(
'cpu.c',
- 'dsp_helper.c',
'fpu_helper.c',
'gdbstub.c',
'helper.c',
'lmmi_helper.c',
'op_helper.c',
+ 'mod-mips-dsp_helper.c',
'mod-mips-msa_helper.c',
'translate.c',
--
2.26.2
- [PATCH 00/26] target/mips: Explode 60% of the 32K-lines translate.c, Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 01/26] target/mips: Extract FPU helpers to 'fpu_helper.h', Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 02/26] target/mips: Extract MSA helpers to mod-mips-msa_helper.c, Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 03/26] target/mips: Extract MSA helper definitions, Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 04/26] target/mips: Extract MSA translation routines, Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 05/26] target/mips: Rename dsp_helper.c as mod-mips-dsp_helper.c,
Philippe Mathieu-Daudé <=
- [PATCH 06/26] target/mips: Extract DSP helper definitions, Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 08/26] target/mips: Extract Multi-Threading helper definitions, Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 07/26] target/mips: Extract DSP translation routines, Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 09/26] target/mips: Extract Code Compaction ASE translation routines, Philippe Mathieu-Daudé, 2020/11/20
- [PATCH 10/26] target/mips: Extract the microMIPS ISA helper definitions, Philippe Mathieu-Daudé, 2020/11/20