From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:58970) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R9zaF-0003r3-82 for qemu-devel@nongnu.org; Sat, 01 Oct 2011 09:26:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R9zaE-0000wH-19 for qemu-devel@nongnu.org; Sat, 01 Oct 2011 09:26:27 -0400 Received: from mnementh.archaic.org.uk ([81.2.115.146]:36428) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R9zaD-0000w5-QK for qemu-devel@nongnu.org; Sat, 01 Oct 2011 09:26:25 -0400 From: Peter Maydell Date: Sat, 1 Oct 2011 13:56:29 +0100 Message-Id: <1317473789-30122-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 2/2] tcg/s390: Remove unused tcg_out_addi() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Richard Henderson , Alexander Graf , patches@linaro.org 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 --- 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 b58df71..9317fe8 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(); -} -- 1.7.4.1