From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30381 invoked by alias); 11 Apr 2015 13:58:42 -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 30372 invoked by uid 89); 11 Apr 2015 13:58:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Sat, 11 Apr 2015 13:58:41 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 93CD28EFD5; Sat, 11 Apr 2015 13:58:39 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-116-24.ams2.redhat.com [10.36.116.24]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t3BDwcNq004101 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 11 Apr 2015 09:58:39 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.9/8.14.9) with ESMTP id t3BDwagP031976; Sat, 11 Apr 2015 15:58:36 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.9/8.14.9/Submit) id t3BDwZk0031975; Sat, 11 Apr 2015 15:58:35 +0200 Date: Sat, 11 Apr 2015 13:58:00 -0000 From: Jakub Jelinek To: Kirill Yukhin Cc: GCC Patches , Uros Bizjak Subject: Re: [PATCH, i386] Fix PR target/65671. Generate 32x4 extract even for DF in absence of AVX-512DQ. Message-ID: <20150411135835.GC19273@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <20150409143658.GA48753@msticlxl57.ims.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150409143658.GA48753@msticlxl57.ims.intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00504.txt.bz2 On Thu, Apr 09, 2015 at 06:37:01PM +0400, Kirill Yukhin wrote: > gcc/ > * config/i386/sse.md: Generate vextract32x4 if AVX-512DQ > is disabled. > > gcc/testsuite/ > * gcc.target/i386/pr65671.c: New. The testcase fails if gas doesn't have AVX512VL support (my only has AVX512F). Fixed thusly, committed as obvious. 2015-04-11 Jakub Jelinek PR target/65671 * gcc.target/i386/pr65671.c: Require avx512vl effective target. --- gcc/testsuite/gcc.target/i386/pr65671.c.jj 2015-04-11 10:44:30.579838982 +0200 +++ gcc/testsuite/gcc.target/i386/pr65671.c 2015-04-11 15:52:19.778368299 +0200 @@ -1,6 +1,7 @@ /* PR target/65671 */ /* { dg-do assemble } */ /* { dg-require-effective-target lp64 } */ +/* { dg-require-effective-target avx512vl } */ /* { dg-options "-O2 -mavx512vl -ffixed-ymm16" } */ #include Jakub