From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) by sourceware.org (Postfix) with ESMTP id 34CAF39540CD for ; Tue, 13 Apr 2021 22:20:17 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 34CAF39540CD Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=kernel.crashing.org Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=segher@kernel.crashing.org Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.14.1) with ESMTP id 13DMJFbk024640; Tue, 13 Apr 2021 17:19:16 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 13DMJD4E024639; Tue, 13 Apr 2021 17:19:13 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Tue, 13 Apr 2021 17:19:12 -0500 From: Segher Boessenkool To: Michael Meissner , gcc-patches@gcc.gnu.org, David Edelsohn , Bill Schmidt , Peter Bergner , Will Schmidt Subject: Re: [PATCH 1/2] Add IEEE 128-bit min/max support on PowerPC Message-ID: <20210413221912.GU26583@gate.crashing.org> References: <20210409143800.GA12782@ibm-toto.the-meissners.org> <20210409144250.GA14459@ibm-toto.the-meissners.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210409144250.GA14459@ibm-toto.the-meissners.org> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-6.7 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, TXREP, T_SPF_HELO_PERMERROR, T_SPF_PERMERROR autolearn=no 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, 13 Apr 2021 22:20:20 -0000 Hi! On Fri, Apr 09, 2021 at 10:42:50AM -0400, Michael Meissner wrote: > Since then the patch seems to have gone into a limbo state. Patches I cannot immediately handle take time, and if they aren't pinged, they can fall off the map. So a) ping your patches, once a week for example; and b) write patches that are simpler to review (do not cost many hours each). > gcc/ > 2021-04-09 Michael Meissner > > * config/rs6000/rs6000.c (rs6000_emit_minmax): Add support for ISA > 3.1 IEEE 128-bit floating point xsmaxcqp and xsmincqp instructions. > * config/rs6000/rs60000.h (FLOAT128_MIN_MAX_FPMASK_P): New macro. As said in the other mail, don't do the macro; just write its expansion in the single place it is used. > * config/rs6000/rs6000.md (s3): Add support for the > ISA 3.1 IEEE 128-bit minimum and maximum instructions. And rephrase this, just "New" something. So please resend, taking into account all comments. Segher