From: Peter Maydell Date: Sat, 7 Jun 2014 17:04:55 +0000 (+0100) Subject: target-i386/translate.c: Remove unused tcg_gen_lshift() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e3a17ef6cc8034b6a453014746c34b41435c3345;p=qemu.git target-i386/translate.c: Remove unused tcg_gen_lshift() The function tcg_gen_lshift() is unused; remove it. Signed-off-by: Peter Maydell Signed-off-by: Michael Tokarev --- diff --git a/target-i386/translate.c b/target-i386/translate.c index 2359787b42..6fcd8245d2 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -1506,14 +1506,6 @@ static void gen_shift_rm_im(DisasContext *s, TCGMemOp ot, int op1, int op2, } } -static inline void tcg_gen_lshift(TCGv ret, TCGv arg1, target_long arg2) -{ - if (arg2 >= 0) - tcg_gen_shli_tl(ret, arg1, arg2); - else - tcg_gen_shri_tl(ret, arg1, -arg2); -} - static void gen_rot_rm_T1(DisasContext *s, TCGMemOp ot, int op1, int is_right) { target_ulong mask = (ot == MO_64 ? 0x3f : 0x1f);