From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x131.google.com (mail-il1-x131.google.com [IPv6:2607:f8b0:4864:20::131]) by sourceware.org (Postfix) with ESMTPS id B466F3858C83 for ; Fri, 14 Oct 2022 13:24:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B466F3858C83 Received: by mail-il1-x131.google.com with SMTP id h18so2509909ilh.3 for ; Fri, 14 Oct 2022 06:24:10 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:user-agent:message-id:in-reply-to:date:references :subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=IDRP6TmpnFNupWi5BBzMGFNumwJxIFC/gFE/SUy/I8E=; b=D+QrfMXaaWHeTtySuQNK/hjLSwCUxKqAKm/u2n++bupq9wdU3BaofwL4EkMSGrtyzD 4/X6kotIPxH5CsDCfNqKNZ7Bw8+wzWt+B/tdMGDYhbU/ZLKI6Z5B+XRIm3Ui2VMbmfw4 oQlpK8fwcaitVArvGbiIplEmCzkJ7LxKAfGJHJWvAgXe8brsHCr10ekh3J/HMpF9rc8/ xiN9CEPq8ZFcot9HUOn2wwAlxOzJLoEixNVGbO6MSd/YvbH6p0RZFBmk5C8UdbF+GTic XVkFHD7N+cEcS2juOfhFbU/QyUb6qe0EBlMfkc1V/WdF7SIJMv0pCkQFajqGgEWJNP4s YQQA== X-Gm-Message-State: ACrzQf19xZPkW3+PQSFn4fQosBaKecjM8Yrx00yIA+TyoJSCgRMscUT1 sIaT7QTiGadcRpZbNFI0uJWNuQ== X-Google-Smtp-Source: AMsMyM5J6LAhj8QKvyQwgZz2B+7IewfRVkir1TaxNm9049GJ3aW4mFQhl5ZXyl6CIvy+Zd0VGT4jhg== X-Received: by 2002:a05:6e02:1d13:b0:2f9:e9bf:ec85 with SMTP id i19-20020a056e021d1300b002f9e9bfec85mr2484703ila.164.1665753849984; Fri, 14 Oct 2022 06:24:09 -0700 (PDT) Received: from murgatroyd (71-211-160-49.hlrn.qwest.net. [71.211.160.49]) by smtp.gmail.com with ESMTPSA id bs11-20020a056638450b00b0036358f41ebdsm1068683jab.132.2022.10.14.06.24.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 14 Oct 2022 06:24:09 -0700 (PDT) From: Tom Tromey To: Tom de Vries Cc: Tom Tromey , gdb-patches@sourceware.org Subject: Re: [PATCH 0/2] Fix .gdb_index with Ada References: <20220922202054.2773698-1-tromey@adacore.com> <03994f80-2aa9-e30a-2cab-d458b402e148@suse.de> <8735buqgh2.fsf@tromey.com> <871qrbpico.fsf@tromey.com> <243a535f-e79a-c52c-f5f8-1b03d332b564@suse.de> X-Attribution: Tom Date: Fri, 14 Oct 2022 07:24:08 -0600 In-Reply-To: <243a535f-e79a-c52c-f5f8-1b03d332b564@suse.de> (Tom de Vries's message of "Thu, 13 Oct 2022 23:44:20 +0200") Message-ID: <87r0zao7wn.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-5.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org 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: , X-List-Received-Date: Fri, 14 Oct 2022 13:24:12 -0000 >> I looked into this more. >> Older versions of gdb don't add C++ symbols to the index, so when I >> diff'd the indexes I saw a lot of "_Z" additions. Locally I've changed >> this code to skip linkage names for C++ only. >> Tom> Ah, does that then fix the c-linkage-name.exp regression? Yeah. I'm testing the updated series now, I hope to send it today. Tom