From patchwork Sat Oct 1 12:56:29 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 4457 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 0DC3723F57 for ; Sat, 1 Oct 2011 12:58:08 +0000 (UTC) Received: from mail-bw0-f52.google.com (mail-bw0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id EA327A1822E for ; Sat, 1 Oct 2011 12:58:07 +0000 (UTC) Received: by bke5 with SMTP id 5so4018600bke.11 for ; Sat, 01 Oct 2011 05:58:07 -0700 (PDT) Received: by 10.223.55.136 with SMTP id u8mr17432272fag.46.1317473887483; Sat, 01 Oct 2011 05:58:07 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.3.234 with SMTP id f10cs0laf; Sat, 1 Oct 2011 05:58:00 -0700 (PDT) Received: by 10.223.9.69 with SMTP id k5mr20320791fak.62.1317473821984; Sat, 01 Oct 2011 05:57:01 -0700 (PDT) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id w6si4092823fah.29.2011.10.01.05.56.31 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 01 Oct 2011 05:57:01 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1R9z7F-0007qH-Ov; Sat, 01 Oct 2011 13:56:29 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Cc: patches@linaro.org, Alexander Graf , Richard Henderson Subject: [PATCH 2/2] tcg/s390: Remove unused tcg_out_addi() Date: Sat, 1 Oct 2011 13:56:29 +0100 Message-Id: <1317473789-30122-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 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 Acked-by: Richard Henderson --- 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(); -}