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 3A59638708A8 for ; Wed, 3 Jun 2020 18:27:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 3A59638708A8 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 053IRZKD024798; Wed, 3 Jun 2020 13:27:35 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 053IRY2E024797; Wed, 3 Jun 2020 13:27:34 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Wed, 3 Jun 2020 13:27:34 -0500 From: Segher Boessenkool To: Martin =?utf-8?B?TGnFoWth?= Cc: Richard Biener , GCC Patches , Richard Sandiford , David Edelsohn Subject: Re: [stage1][PATCH] Lower VEC_COND_EXPR into internal functions. Message-ID: <20200603182734.GA31009@gate.crashing.org> References: <20200529153933.GW31009@gate.crashing.org> <20200529170936.GY31009@gate.crashing.org> <20200529173758.GA31009@gate.crashing.org> <20200530130801.GD31009@gate.crashing.org> <16e3957c-e390-5984-b14e-dd3c70c3bd1c@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <16e3957c-e390-5984-b14e-dd3c70c3bd1c@suse.cz> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_DNSWL_NONE, 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: Wed, 03 Jun 2020 18:27:39 -0000 Hi Martin, Okay, let's try this out. Okay for trunk. Thanks for the work! On Tue, Jun 02, 2020 at 05:00:56PM +0200, Martin Liška wrote: > >From 22db04d058c9bbd140041e7aa2caf1613767095a Mon Sep 17 00:00:00 2001 > From: Martin Liska > Date: Tue, 2 Jun 2020 15:29:37 +0200 > Subject: [PATCH] rs6000: replace FAIL with gcc_unreachable. ("Replace", and no dot at the end). > * config/rs6000/vector.md: Replace FAIL with gcc_unreachable > in all vcond* patterns. Segher