From patchwork Thu Oct 10 21:28:30 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 282460 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)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B54E22C0091 for ; Fri, 11 Oct 2013 08:29:45 +1100 (EST) Received: from localhost ([::1]:51295 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUNnj-0003cq-Px for incoming@patchwork.ozlabs.org; Thu, 10 Oct 2013 17:29:43 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42350) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUNn1-0003aG-2W for qemu-devel@nongnu.org; Thu, 10 Oct 2013 17:29:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VUNmw-0002Mf-0o for qemu-devel@nongnu.org; Thu, 10 Oct 2013 17:28:59 -0400 Received: from mail-pd0-x231.google.com ([2607:f8b0:400e:c02::231]:37883) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUNmv-0002MN-Po for qemu-devel@nongnu.org; Thu, 10 Oct 2013 17:28:53 -0400 Received: by mail-pd0-f177.google.com with SMTP id y10so3184695pdj.8 for ; Thu, 10 Oct 2013 14:28:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=KkjLbfz8zka6d9LHDg2y+8tKpcK6bxBgDIQo4Pgheu4=; b=ukW5V+eksy2QAshfaBXjw5G1KsMixkxyhOUCg5J/9y4D7qyyD7gHjeZyAwXlNQ/DE+ cUwP9KathNpz54o7Kun3bLl4QaSWV8Qy02BcBtUjFFpKmF5m+IV9CWkLeHtML4InwKOb 1q0OF3ZRM1hDD3VUkJ5z3b4tl7UtZati7R9QR0Aet0+p9Plw2KQDLqdg6XaOE4W2/vOJ PzWovIOp8c9huEYChtAbQnGKuF1FYDoWKJD2DJNlmp5NJsksVQDRkk7N8BNghhJIBeTU Zo0EkvCTVGTV08iF7lszvG8P0pyHheDR8pJZTWtlZZOZKBhqjQ3wyH+HvXKG2NGmnABc RNow== X-Received: by 10.66.25.205 with SMTP id e13mr5174043pag.180.1381440532923; Thu, 10 Oct 2013 14:28:52 -0700 (PDT) Received: from anchor.twiddle.net (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id b3sm55304226pbh.7.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 10 Oct 2013 14:28:52 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Thu, 10 Oct 2013 14:28:30 -0700 Message-Id: <1381440525-6666-3-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1381440525-6666-1-git-send-email-rth@twiddle.net> References: <1381440525-6666-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c02::231 Cc: aurelien@aurel32.net, anthony@codemonkey.ws Subject: [Qemu-devel] [PULL 02/17] tcg: Delete tcg_helper_get_name declaration 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 function was deleted in 4dc81f2822187f4503d4bdb76785cafa5b28db0b. Reviewed-by: Stefan Weil Signed-off-by: Richard Henderson --- tcg/tcg.h | 1 - 1 file changed, 1 deletion(-) diff --git a/tcg/tcg.h b/tcg/tcg.h index 902c751..20543f6 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -681,7 +681,6 @@ TCGArg *tcg_optimize(TCGContext *s, uint16_t *tcg_opc_ptr, TCGArg *args, /* only used for debugging purposes */ void tcg_register_helper(void *func, const char *name); -const char *tcg_helper_get_name(TCGContext *s, void *func); void tcg_dump_ops(TCGContext *s); void dump_ops(const uint16_t *opc_buf, const TCGArg *opparam_buf);