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-Tag: TizenStudio_2.0_p2.3.2~208^2~519^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b808a1a812a15b91ccea3a10eea195da65909c5f;p=sdk%2Femulator%2Fqemu.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 c48ee7f..5204ed8 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)