From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30227 invoked by alias); 12 Apr 2014 19:29:52 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 30214 invoked by uid 89); 12 Apr 2014 19:29:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pb0-f53.google.com Received: from mail-pb0-f53.google.com (HELO mail-pb0-f53.google.com) (209.85.160.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sat, 12 Apr 2014 19:29:50 +0000 Received: by mail-pb0-f53.google.com with SMTP id rp16so6638126pbb.26 for ; Sat, 12 Apr 2014 12:29:49 -0700 (PDT) X-Received: by 10.68.236.100 with SMTP id ut4mr35025036pbc.29.1397330989126; Sat, 12 Apr 2014 12:29:49 -0700 (PDT) Received: from seba.sebabeach.org.gmail.com (173-13-178-53-sfba.hfc.comcastbusiness.net. [173.13.178.53]) by mx.google.com with ESMTPSA id bz4sm23637959pbb.12.2014.04.12.12.29.48 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 12 Apr 2014 12:29:48 -0700 (PDT) From: Doug Evans To: Andy Wingo Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 7/9] Remove Guile mark functions that don't mark anything References: <1397060028-18158-1-git-send-email-wingo@igalia.com> <1397060028-18158-8-git-send-email-wingo@igalia.com> Date: Sat, 12 Apr 2014 19:29:00 -0000 In-Reply-To: <1397060028-18158-8-git-send-email-wingo@igalia.com> (Andy Wingo's message of "Wed, 9 Apr 2014 18:13:46 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2014-04/txt/msg00241.txt.bz2 Andy Wingo writes: > * gdb/guile/scm-arch.c (arscm_mark_arch_smob): > * gdb/guile/scm-block.c (bkscm_mark_block_smob) > (bkscm_mark_block_syms_progress_smob): > * gdb/guile/scm-frame.c (frscm_mark_frame_smob): > * gdb/guile/scm-lazy-string.c (arscm_mark_arch_smob): > * gdb/guile/scm-symbol.c (lsscm_mark_lazy_string_smob): > * gdb/guile/scm-symtab.c (syscm_mark_symbol_smob): > * gdb/guile/scm-type.c (tyscm_mark_type_smob): Remove useless mark > functions. > --- > gdb/guile/scm-arch.c | 9 --------- > gdb/guile/scm-block.c | 19 ------------------- > gdb/guile/scm-frame.c | 9 --------- > gdb/guile/scm-lazy-string.c | 9 --------- > gdb/guile/scm-symbol.c | 9 --------- > gdb/guile/scm-symtab.c | 9 --------- > gdb/guile/scm-type.c | 9 --------- > 7 files changed, 73 deletions(-) This is ok with the requisite changelog entry corrections. These functions were useful during early development, but I guess we're passed that point now.