From patchwork Tue Aug 5 14:07:10 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gary Benson X-Patchwork-Id: 2303 Received: (qmail 10507 invoked by alias); 5 Aug 2014 14:07:25 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 10497 invoked by uid 89); 5 Aug 2014 14:07:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 05 Aug 2014 14:07:14 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s75E7CCT025874 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Tue, 5 Aug 2014 10:07:12 -0400 Received: from blade.nx (ovpn-116-90.ams2.redhat.com [10.36.116.90]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s75E7BdH011267 for ; Tue, 5 Aug 2014 10:07:11 -0400 Received: from blade.nx (localhost [127.0.0.1]) by blade.nx (Postfix) with ESMTP id 8F78A2640D1 for ; Tue, 5 Aug 2014 15:07:10 +0100 (BST) From: Gary Benson To: gdb-patches@sourceware.org Subject: [OB PATCH] Remove pointless function initialize_interps Date: Tue, 5 Aug 2014 15:07:10 +0100 Message-Id: <1407247630-8734-1-git-send-email-gbenson@redhat.com> X-IsSubscribed: yes This commit removes the pointless function initialize_interps. gdb/ 2014-08-05 Gary Benson * interps.c (initialize_interps): Remove prototype. (interpreter_initialized): Remove static global. (interp_add): Do not call initialize_interps. (initialize_interps): Remove function. --- gdb/ChangeLog | 7 +++++++ gdb/interps.c | 19 ------------------- 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/gdb/interps.c b/gdb/interps.c index 5a93095..713480b 100644 --- a/gdb/interps.c +++ b/gdb/interps.c @@ -70,9 +70,6 @@ struct interp int quiet_p; }; -/* Functions local to this file. */ -static void initialize_interps (void); - /* The magic initialization routine for this module. */ void _initialize_interpreter (void); @@ -83,8 +80,6 @@ static struct interp *interp_list = NULL; static struct interp *current_interpreter = NULL; static struct interp *top_level_interpreter_ptr = NULL; -static int interpreter_initialized = 0; - /* interp_new - This allocates space for a new interpreter, fills the fields from the inputs, and returns a pointer to the interpreter. */ @@ -112,9 +107,6 @@ interp_new (const char *name, const struct interp_procs *procs) void interp_add (struct interp *interp) { - if (!interpreter_initialized) - initialize_interps (); - gdb_assert (interp_lookup (interp->name) == NULL); interp->next = interp_list; @@ -389,17 +381,6 @@ clear_interpreter_hooks (void) deprecated_error_begin_hook = 0; } -/* This is a lazy init routine, called the first time the interpreter - module is used. I put it here just in case, but I haven't thought - of a use for it yet. I will probably bag it soon, since I don't - think it will be necessary. */ -static void -initialize_interps (void) -{ - interpreter_initialized = 1; - /* Don't know if anything needs to be done here... */ -} - static void interpreter_exec_cmd (char *args, int from_tty) {