From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id uM2ACOWdW2AWawAAWB0awg (envelope-from ) for ; Wed, 24 Mar 2021 16:15:33 -0400 Received: by simark.ca (Postfix, from userid 112) id 2071F1EF7C; Wed, 24 Mar 2021 16:15:32 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=DKIM_SIGNED, MAILING_LIST_MULTI,RDNS_DYNAMIC,T_DKIM_INVALID,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id DE1E61EF5D for ; Wed, 24 Mar 2021 16:15:31 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id AB2BB3851C24; Wed, 24 Mar 2021 20:15:31 +0000 (GMT) Received: from gateway33.websitewelcome.com (gateway33.websitewelcome.com [192.185.145.23]) by sourceware.org (Postfix) with ESMTPS id C92D03851C24 for ; Wed, 24 Mar 2021 20:15:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org C92D03851C24 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=tromey.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=tom@tromey.com Received: from cm16.websitewelcome.com (cm16.websitewelcome.com [100.42.49.19]) by gateway33.websitewelcome.com (Postfix) with ESMTP id 6F1F91212C for ; Wed, 24 Mar 2021 15:15:11 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id P9uJllGmAb8LyP9uJl8XDC; Wed, 24 Mar 2021 15:15:11 -0500 X-Authority-Reason: nr=8 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date:Subject: To:From:Sender:Reply-To:Cc:Content-Type:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=Tw2ZOB393ZSBNSspGr6CMvE48KoWt1AIYyJKzYC0Vxo=; b=QJQfHAOh/mnd1pGRScbYc/ttlI qIEwbkZqISqLBGdKAJ8k257A1sF+ZEb+JA6YGsiqjysH78ALsKxnPsW1HeFaQt5Eb/7YBBRusc/Do n6iUZdt1dqp1OSo7WgFuQDduI; Received: from 71-211-130-165.hlrn.qwest.net ([71.211.130.165]:52838 helo=localhost.localdomain) by box5379.bluehost.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1lP9uJ-001x1i-5b for gdb-patches@sourceware.org; Wed, 24 Mar 2021 14:15:11 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/2] Two minor partial symtab cleanups Date: Wed, 24 Mar 2021 14:15:08 -0600 Message-Id: <20210324201510.23655-1-tom@tromey.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - box5379.bluehost.com X-AntiAbuse: Original Domain - sourceware.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tromey.com X-BWhitelist: no X-Source-IP: 71.211.130.165 X-Source-L: No X-Exim-ID: 1lP9uJ-001x1i-5b X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: 71-211-130-165.hlrn.qwest.net (localhost.localdomain) [71.211.130.165]:52838 X-Source-Auth: tom+tromey.com X-Email-Count: 1 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" Here are two minor partial symtab cleanups, also coming from the larger quick symbol function cleanup series that I'm working on. Regression tested on x86-64 Fedora 32. Let me know what you think. Tom