From patchwork Sun Sep 14 19:45:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 389121 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 6EDE41400E6 for ; Mon, 15 Sep 2014 05:58:40 +1000 (EST) Received: from localhost ([::1]:56037 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTFwU-0008JW-A8 for incoming@patchwork.ozlabs.org; Sun, 14 Sep 2014 15:58:38 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54652) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTFw0-00078h-UZ for qemu-devel@nongnu.org; Sun, 14 Sep 2014 15:58:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XTFvw-0007aP-3j for qemu-devel@nongnu.org; Sun, 14 Sep 2014 15:58:08 -0400 Received: from mnementh.archaic.org.uk ([81.2.115.146]:47029) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTFvv-0007YL-U2 for qemu-devel@nongnu.org; Sun, 14 Sep 2014 15:58:04 -0400 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1XTFju-0004hD-Ib; Sun, 14 Sep 2014 20:45:38 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Date: Sun, 14 Sep 2014 20:45:38 +0100 Message-Id: <1410723938-18007-6-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1410723938-18007-1-git-send-email-peter.maydell@linaro.org> References: <1410723938-18007-1-git-send-email-peter.maydell@linaro.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 81.2.115.146 Cc: Richard Henderson , Aurelien Jarno , patches@linaro.org Subject: [Qemu-devel] [PATCH 5/5] target-mips/op_helper.c: Remove unused do_lbu() function X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The do_lbu() function defined by the expansion of HELPER_LD() is never used, so don't define it. Signed-off-by: Peter Maydell --- target-mips/op_helper.c | 1 - 1 file changed, 1 deletion(-) diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index df97b35..66aedc1 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -90,7 +90,6 @@ static inline type do_##name(CPUMIPSState *env, target_ulong addr, \ } \ } #endif -HELPER_LD(lbu, ldub, uint8_t) HELPER_LD(lw, ldl, int32_t) #ifdef TARGET_MIPS64 HELPER_LD(ld, ldq, int64_t)