Remove unused gen_bx_T0 function.
authorFilip Navara <filip.navara@gmail.com>
Mon, 22 Jun 2009 18:40:10 +0000 (13:40 -0500)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 24 Jun 2009 14:09:15 +0000 (09:09 -0500)
Signed-off-by: Filip Navara <filip.navara@gmail.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
target-arm/translate.c

index adac19a267cca2e50f97a23ae750d0d2cc888dd8..64956e4d29e159e9b9ef0e6f9ac2c9468951a27c 100644 (file)
@@ -812,14 +812,6 @@ static inline void gen_bx(DisasContext *s, TCGv var)
     store_cpu_field(var, regs[15]);
 }
 
-/* TODO: This should be removed.  Use gen_bx instead.  */
-static inline void gen_bx_T0(DisasContext *s)
-{
-    TCGv tmp = new_tmp();
-    tcg_gen_mov_i32(tmp, cpu_T[0]);
-    gen_bx(s, tmp);
-}
-
 /* Variant of store_reg which uses branch&exchange logic when storing
    to r15 in ARM architecture v7 and above. The source must be a temporary
    and will be marked as dead. */