diff options
author | malc <av1474@comtv.ru> | 2011-06-28 02:27:52 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2011-06-28 02:27:52 +0400 |
commit | 72e93b1a825b03c0f463c7a338fb22ba368866b0 (patch) | |
tree | a9235a4fc86ad2fadb7cab6568f20bb68b2d3b0b /tcg | |
parent | 1e4006d8bbe8e0e14ff5336b38115869330c1110 (diff) | |
download | qemu-72e93b1a825b03c0f463c7a338fb22ba368866b0.tar.gz qemu-72e93b1a825b03c0f463c7a338fb22ba368866b0.tar.bz2 qemu-72e93b1a825b03c0f463c7a338fb22ba368866b0.zip |
tcg/ppc64: Remove tcg_out_addi
The only user (within tcg.c) was removed
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/ppc64/tcg-target.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c index 32184387e5..065c710f33 100644 --- a/tcg/ppc64/tcg-target.c +++ b/tcg/ppc64/tcg-target.c @@ -968,11 +968,6 @@ static void ppc_addi64 (TCGContext *s, int rt, int ra, tcg_target_long si) } } -static void tcg_out_addi (TCGContext *s, int reg, tcg_target_long val) -{ - ppc_addi64 (s, reg, reg, val); -} - static void tcg_out_cmp (TCGContext *s, int cond, TCGArg arg1, TCGArg arg2, int const_arg2, int cr, int arch64) { |