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 908473858432 for ; Tue, 19 Oct 2021 14:28:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 908473858432 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 19JERuBB024118; Tue, 19 Oct 2021 09:27:57 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 19JERur7024113; Tue, 19 Oct 2021 09:27:56 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Tue, 19 Oct 2021 09:27:56 -0500 From: Segher Boessenkool To: wschmidt@linux.ibm.com Cc: "Paul A. Clarke" , gcc-patches@gcc.gnu.org Subject: Re: [PATCH v4 1/3] rs6000: Add nmmintrin.h to extra_headers Message-ID: <20211019142756.GQ614@gate.crashing.org> References: <20211019011512.100358-1-pc@us.ibm.com> <20211019011512.100358-2-pc@us.ibm.com> <4f12fa4e-2472-fab3-2962-f859929ffed7@linux.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4f12fa4e-2472-fab3-2962-f859929ffed7@linux.ibm.com> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-9.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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, 19 Oct 2021 14:28:58 -0000 On Tue, Oct 19, 2021 at 08:10:06AM -0500, Bill Schmidt via Gcc-patches wrote: > Hi Paul, > > On 10/18/21 8:15 PM, Paul A. Clarke wrote: > > Fix an ommission in commit 29fb1e831bf1c25e4574bf2f98a9f534e5c67665. (Typo, s/mm/m/) > > 2021-10-18 Paul A. Clarke > > > > gcc > > * config/config.gcc (extra_headers): Add nmmintrin.h. > > --- > > gcc/config.gcc | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/gcc/config.gcc b/gcc/config.gcc > > index aa5bd5d14590..1cb9303b3a85 100644 > > --- a/gcc/config.gcc > > +++ b/gcc/config.gcc > > @@ -490,6 +490,7 @@ powerpc*-*-*) > > extra_headers="${extra_headers} xmmintrin.h mm_malloc.h emmintrin.h" > > extra_headers="${extra_headers} mmintrin.h x86intrin.h" > > extra_headers="${extra_headers} pmmintrin.h tmmintrin.h smmintrin.h" > > + extra_headers="${extra_headers} nmmintrin.h" > > extra_headers="${extra_headers} ppu_intrinsics.h spu2vmx.h vec_types.h si2vmx.h" > > extra_headers="${extra_headers} amo.h" > > case x$with_cpu in > > In my opinion, you can commit this one as obvious. Or as trivial. Or as obvious and trivial :-) Segher