From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 114209 invoked by alias); 6 Apr 2017 12:55:55 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 114187 invoked by uid 89); 6 Apr 2017 12:55:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-21.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_2,GIT_PATCH_3,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=HTo:U*ro, HTo:D*DE X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 06 Apr 2017 12:55:53 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 397E32FAA64; Thu, 6 Apr 2017 12:55:53 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 397E32FAA64 Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=jakub@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 397E32FAA64 Received: from tucnak.zalov.cz (ovpn-116-72.ams2.redhat.com [10.36.116.72]) by smtp.corp.redhat.com (Postfix) with ESMTPS id B6772994B3; Thu, 6 Apr 2017 12:55:52 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id v36CtnFU025597; Thu, 6 Apr 2017 14:55:50 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id v36CtmNm025596; Thu, 6 Apr 2017 14:55:48 +0200 Date: Thu, 06 Apr 2017 12:55:00 -0000 From: Jakub Jelinek To: Rainer Orth Cc: Jeff Law , Uros Bizjak , Bernd Schmidt , gcc-patches@gcc.gnu.org Subject: Re: [PATCH] On x86 allow if-conversion of more than one insn as long as there is at most one cmov (PR tree-optimization/79390) Message-ID: <20170406125548.GE17461@tucnak> Reply-To: Jakub Jelinek References: <20170401122027.GT17461@tucnak> <8eff0bf0-9c78-bf5c-24b9-cba6c3a3b6e7@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.7.1 (2016-10-04) X-IsSubscribed: yes X-SW-Source: 2017-04/txt/msg00287.txt.bz2 On Thu, Apr 06, 2017 at 02:50:27PM +0200, Rainer Orth wrote: > 2017-04-06 Rainer Orth > > * gcc.target/i386/pr79390.c: Allow for cmovl.a. Please mention PR tree-optimization/79390 in the ChangeLog and commit message. Ok with that change. > # HG changeset patch > # Parent 7c92d635959dcb1a757b301344d8519dde9e1e7a > Fix gcc.target/i386/pr79390.c for Solaris as > > diff --git a/gcc/testsuite/gcc.target/i386/pr79390.c b/gcc/testsuite/gcc.target/i386/pr79390.c > --- a/gcc/testsuite/gcc.target/i386/pr79390.c > +++ b/gcc/testsuite/gcc.target/i386/pr79390.c > @@ -25,4 +25,4 @@ foo (void) > return jp; > } > > -/* { dg-final { scan-assembler "\[ \\t\]cmov\[a-z]+\[ \\t\]" } } */ > +/* { dg-final { scan-assembler "\[ \\t\]cmov\[a-z.]+\[ \\t\]" } } */ Jakub