diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-09-14 20:45:38 +0100 |
---|---|---|
committer | Leon Alrae <leon.alrae@imgtec.com> | 2014-10-14 13:29:14 +0100 |
commit | b808a1a812a15b91ccea3a10eea195da65909c5f (patch) | |
tree | 665623c1730af56aea7c025c209ab5854d620a64 /target-mips/op_helper.c | |
parent | 3414e93eb7fcc8d24500edbeddf94b1bd75ac46b (diff) | |
download | qemu-b808a1a812a15b91ccea3a10eea195da65909c5f.zip |
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 <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 1 |
1 files changed, 0 insertions, 1 deletions
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) |