Message ID | 1402160695-14060-1-git-send-email-peter.maydell@linaro.org |
---|---|
State | Superseded |
Headers | show |
Applied to -trivial, thanks! /mjt
diff --git a/target-i386/translate.c b/target-i386/translate.c index 3aa52eb..c02f7fd 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -1505,14 +1505,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);
The function tcg_gen_lshift() is unused; remove it. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> --- target-i386/translate.c | 8 -------- 1 file changed, 8 deletions(-)