qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-trivial] [PATCH] target-i386/translate.c: Remove unused tcg_gen_ls


From: Peter Maydell
Subject: [Qemu-trivial] [PATCH] target-i386/translate.c: Remove unused tcg_gen_lshift()
Date: Sat, 7 Jun 2014 18:04:55 +0100

The function tcg_gen_lshift() is unused; remove it.

Signed-off-by: Peter Maydell <address@hidden>
---
 target-i386/translate.c | 8 --------
 1 file changed, 8 deletions(-)

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);
-- 
1.8.5.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]