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 7FE81385843A for ; Tue, 16 May 2023 15:25:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 7FE81385843A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=kernel.crashing.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=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 34GFOCMo030923; Tue, 16 May 2023 10:24:12 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 34GFOCce030922; Tue, 16 May 2023 10:24:12 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Tue, 16 May 2023 10:24:11 -0500 From: Segher Boessenkool To: Ajit Agarwal Cc: gcc-patches , Peter Bergner , Jeff Law , Richard Biener Subject: Re: [PATCH v5 1/4] rs6000: Enable REE pass by default Message-ID: <20230516152411.GH19790@gate.crashing.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi! On Tue, May 16, 2023 at 11:45:28AM +0530, Ajit Agarwal wrote: > --- a/gcc/doc/invoke.texi > +++ b/gcc/doc/invoke.texi > @@ -12455,8 +12455,8 @@ Attempt to remove redundant extension instructions. This is especially > helpful for the x86-64 architecture, which implicitly zero-extends in 64-bit > registers after writing to their lower 32-bit half. > > -Enabled for Alpha, AArch64 and x86 at levels @option{-O2}, > -@option{-O3}, @option{-Os}. > +Enabled for Alpha, AArch64, RS/6000, RISC-V, SPARC, h83000 and x86 at levels > +@option{-O2}, @option{-O3}, @option{-Os}. Please don't mention RS/6000, we don't support that anymore. The architecture we do support is called Power or PowerPC; the target triplets are powerpc*-*-*. rs6000-*-* might still somewhat work, but no one should use it anymore, and we probably should delete it. Please say PowerPC here. With that the patch is okay for trunk. Thank you! Segher