From: Peter Maydell Date: Sun, 14 Sep 2014 19:45:38 +0000 (+0100) Subject: target-mips/op_helper.c: Remove unused do_lbu() function X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b808a1a812a15b91ccea3a10eea195da65909c5f;p=qemu.git target-mips/op_helper.c: Remove unused do_lbu() function The do_lbu() function defined by the expansion of HELPER_LD() is never used, so don't define it. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Signed-off-by: Leon Alrae --- diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index c48ee7f198..5204ed87ca 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -90,7 +90,6 @@ static inline type do_##name(CPUMIPSState *env, target_ulong addr, \ } \ } #endif -HELPER_LD(lbu, ldub, uint8_t) HELPER_LD(lw, ldl, int32_t) #ifdef TARGET_MIPS64 HELPER_LD(ld, ldq, int64_t)