]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg/arm: Remove unused tcg_out_addi()
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 12 Sep 2011 10:03:45 +0000 (11:03 +0100)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 1 Oct 2011 06:15:54 +0000 (06:15 +0000)
Remove the unused function tcg_out_addi() from the ARM TCG backend;
this fixes a compilation failure on ARM hosts with newer gcc.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
tcg/arm/tcg-target.c

index 93eb0f1a4548c38ba5d625d75831a6a61a47a57f..ce4760d23746a064fc85cc3e30726e4e313e023a 100644 (file)
@@ -1820,21 +1820,6 @@ static inline void tcg_out_st(TCGContext *s, TCGType type, int arg,
     tcg_out_st32(s, COND_AL, arg, arg1, arg2);
 }
 
-static void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)
-{
-    if (val > 0)
-        if (val < 0x100)
-            tcg_out_dat_imm(s, COND_AL, ARITH_ADD, reg, reg, val);
-        else
-            tcg_abort();
-    else if (val < 0) {
-        if (val > -0x100)
-            tcg_out_dat_imm(s, COND_AL, ARITH_SUB, reg, reg, -val);
-        else
-            tcg_abort();
-    }
-}
-
 static inline void tcg_out_mov(TCGContext *s, TCGType type, int ret, int arg)
 {
     tcg_out_dat_reg(s, COND_AL, ARITH_MOV, ret, 0, arg, SHIFT_IMM_LSL(0));