aboutsummaryrefslogtreecommitdiff
path: root/target/mips/tcg/translate.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-08-12 15:45:45 +0200
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-08-25 13:02:14 +0200
commitb24339bcd05b9d772f86c74732932bac98a15f4e (patch)
tree26d7a3a9de848296f7efab1b7d46a2d95d20140f /target/mips/tcg/translate.c
parentc1feb46d12a7e7aeed804f2cca69f509c1bea8ef (diff)
downloadqemu-b24339bcd05b9d772f86c74732932bac98a15f4e.zip
qemu-b24339bcd05b9d772f86c74732932bac98a15f4e.tar.gz
qemu-b24339bcd05b9d772f86c74732932bac98a15f4e.tar.bz2
target/mips: Remove gen_helper_0e3i()
gen_helper_0e3i() is unused since commit 895c2d04359 ("target-mips: switch to AREG0 free mode"), remove it. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210816205107.2051495-2-f4bug@amsat.org>
Diffstat (limited to 'target/mips/tcg/translate.c')
-rw-r--r--target/mips/tcg/translate.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/target/mips/tcg/translate.c b/target/mips/tcg/translate.c
index a58d50e..c0f8a04 100644
--- a/target/mips/tcg/translate.c
+++ b/target/mips/tcg/translate.c
@@ -1249,12 +1249,6 @@ TCGv_i64 fpu_f64[32];
tcg_temp_free_i32(helper_tmp); \
} while (0)
-#define gen_helper_0e3i(name, arg1, arg2, arg3, arg4) do { \
- TCGv_i32 helper_tmp = tcg_const_i32(arg4); \
- gen_helper_##name(cpu_env, arg1, arg2, arg3, helper_tmp); \
- tcg_temp_free_i32(helper_tmp); \
- } while (0)
-
#define DISAS_STOP DISAS_TARGET_0
#define DISAS_EXIT DISAS_TARGET_1