diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2011-10-01 13:56:29 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-10-08 15:21:05 +0000 |
commit | dc439de7f96dc1a17e137273366123df24837876 (patch) | |
tree | c327cd8cfc5546b2d8882ba7137c24bac544fb6c /tcg | |
parent | 498562926d798abf9b2fa2533a108f73a914fd3a (diff) |
tcg/s390: Remove unused tcg_out_addi()
Remove the unused function tcg_out_addi() from the s390 TCG backend;
this brings it into line with other backends.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Acked-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/s390/tcg-target.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c index b58df719a6..9317fe88ef 100644 --- a/tcg/s390/tcg-target.c +++ b/tcg/s390/tcg-target.c @@ -2322,8 +2322,3 @@ static void tcg_target_qemu_prologue(TCGContext *s) /* br %r14 (return) */ tcg_out_insn(s, RR, BCR, S390_CC_ALWAYS, TCG_REG_R14); } - -static inline void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val) -{ - tcg_abort(); -} |