From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by sourceware.org (Postfix) with ESMTP id A5F773857C46 for ; Tue, 1 Dec 2020 15:04:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A5F773857C46 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-90-AKTAv3QWNjKW5vw7djOjwQ-1; Tue, 01 Dec 2020 10:04:26 -0500 X-MC-Unique: AKTAv3QWNjKW5vw7djOjwQ-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 2827C8144E1; Tue, 1 Dec 2020 15:04:25 +0000 (UTC) Received: from localhost (unknown [10.33.37.15]) by smtp.corp.redhat.com (Postfix) with ESMTP id AB71610013C1; Tue, 1 Dec 2020 15:04:24 +0000 (UTC) Date: Tue, 1 Dec 2020 15:04:23 +0000 From: Jonathan Wakely To: Segher Boessenkool Cc: Michael Meissner , Peter Bergner , libstdc++@gcc.gnu.org, Bill Schmidt , gcc-patches@gcc.gnu.org, David Edelsohn Subject: Re: [PATCH] libstdc++: Add C++ runtime support for new 128-bit long double format Message-ID: <20201201150423.GK2309743@redhat.com> References: <20201111215001.GA231697@redhat.com> <20201130232920.GH2672@gate.crashing.org> MIME-Version: 1.0 In-Reply-To: <20201130232920.GH2672@gate.crashing.org> X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline X-Spam-Status: No, score=-8.7 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2020 15:04:31 -0000 On 30/11/20 17:29 -0600, Segher Boessenkool wrote: >Hi! > >Thank you for all this. > >On Wed, Nov 11, 2020 at 09:50:01PM +0000, Jonathan Wakely wrote: >> This adds support for the new __ieee128 long double format on >> powerpc64le targets. > >> * testsuite/27_numerics/complex/abi_tag.cc: Add u9___ieee128 to >> regex matching expected symbols. > >One less underscore. Thanks. There was also a misnamed test in the changelog which I've also fixed. >> libstdc++-v3/ChangeLog: >> >> * Makefile.in: >> * config.h.in: > >(etc.) Something missing here? It's just an empty changelog template added by my prepare-commit-msg. The complete changelog was present above it already. I've removed the duplication, thanks. Updated patch coming shortly ...