tcg/ppc: Remove tcg_out_addi

The only user (within tcg.c) was removed

Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
malc 2011-06-28 02:26:06 +04:00
parent 656acddb39
commit 1a2eb16241
1 changed files with 0 additions and 5 deletions

View File

@ -982,11 +982,6 @@ static void ppc_addi (TCGContext *s, int rt, int ra, tcg_target_long si)
}
}
static void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)
{
ppc_addi (s, reg, reg, val);
}
static void tcg_out_cmp (TCGContext *s, int cond, TCGArg arg1, TCGArg arg2,
int const_arg2, int cr)
{