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 B835C387084B for ; Sat, 15 Jun 2024 02:19:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B835C387084B 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 ARC-Filter: OpenARC Filter v1.0.0 sourceware.org B835C387084B Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=63.228.1.57 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1718417983; cv=none; b=Sc53xP9ag4mz0fd1UGXLteFKceNbsfRcNLhE+ai0RlVL2NZGZ0OA70w8m0S9TZj5lsybks8WciWSaK3vODKH8QqRuFf20/F7DwSOqcQgYz4dx1HeHvfSyZiyzboLDHukQodgNJDGEaKV+nTaRUAHCT26x/0IZG38BU/y6bT+y24= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1718417983; c=relaxed/simple; bh=Uj1Q/moMmWOThOJL4aT9duPMP6gpBhb+sU7640Nspho=; h=Date:From:To:Subject:Message-ID:Mime-Version; b=UD1bNOggDaNLj4HNcXwN2HoM82VofS2hh9ybcx5g2F1ms2ZbFH4p6gDOyZKy8iT3iAN8rDxcDheamTveRekjbn6u9ILTMbBV77y/KePtsQwUOWbvoU9V5k9VdgHPq09etY+0+lYVaNukbue+qZ/6SSlRZiXvSeyIactCFmEtZXU= ARC-Authentication-Results: i=1; server2.sourceware.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 45F2IfCb029046; Fri, 14 Jun 2024 21:18:41 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 45F2Ieh0029045; Fri, 14 Jun 2024 21:18:40 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Fri, 14 Jun 2024 21:18:40 -0500 From: Segher Boessenkool To: Carl Love Cc: gcc-patches@gcc.gnu.org, "bergner@linux.ibm.com" , "Kewen.Lin" Subject: Re: [PATCH] rs6000, altivec-2-runnable.c update the require-effective-target Message-ID: <20240615021840.GL19790@gate.crashing.org> References: <600de562-39bf-4358-a128-2766fd775f4f@linux.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <600de562-39bf-4358-a128-2766fd775f4f@linux.ibm.com> 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 Fri, Jun 14, 2024 at 11:37:46AM -0700, Carl Love wrote: > /* { dg-do run } */ > -/* { dg-options "-mvsx" } */ > -/* { dg-additional-options "-mdejagnu-cpu=power8" { target { ! has_arch_pwr8 } } } */ > -/* { dg-require-effective-target powerpc_vsx } */ > +/* { dg-options "-O2 -mdejagnu-cpu=power8" } */ > +/* { dg-require-effective-target p8vector_hw } */ I have no idea why the original didn't do -O2 already, heh. So this is only an improvement, right! I won't complain at all unless it fails :-) Segher