From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28676 invoked by alias); 26 Jan 2017 11:53:52 -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 28657 invoked by uid 89); 26 Jan 2017 11:53:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=Hx-spam-relays-external:74.125.82.68, H*RU:74.125.82.68, H*MI:sk:87d1fav, H*i:sk:87d1fav X-HELO: mail-wm0-f68.google.com Received: from mail-wm0-f68.google.com (HELO mail-wm0-f68.google.com) (74.125.82.68) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 26 Jan 2017 11:53:50 +0000 Received: by mail-wm0-f68.google.com with SMTP id r144so49929723wme.0 for ; Thu, 26 Jan 2017 03:53:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to:user-agent; bh=/kIyImxIu1BiEzKOnI0SSqRWRcBejUOG8un+oPiyZ40=; b=KdUmhaKAeHFyn4EPlyz487whtnHxHwUt5SyEvhb5jf3LuycNms0IQe6mc0mRRVx/mq 46WZo7a0qmNDVEzrI/7fJ+dihRNliENnBR3rND3o1yW5hixf4YgLCA8zvV7i/5AbJLFt acIyQI+8aQChjxPBmcSbEOf1QgAeBssc2Ch8x3BpKOSCj0M0e+wJvJ6XBTnr6PEEu4fG u6/mOaifbAkialkwJoJHmxSGyjOJo/Sw3ZTHkq7iw6eoK3zxU5YHu7D7cAUGPxTZL0fP ubAvSzEN+GJ08zvuvxSsE5HOnrRV51n21Dbylkp265S3MjKYHMQv2f1HscSBHzmvh6Gj LBeg== X-Gm-Message-State: AIkVDXKCK5Iab2bkgD7GUWk2umLnWrBGXlLUQBSGYnhZSWTC84IIFtl7qMcDzORcHBdrYw== X-Received: by 10.28.69.17 with SMTP id s17mr2488930wma.60.1485431628538; Thu, 26 Jan 2017 03:53:48 -0800 (PST) Received: from ubuntu ([213.87.150.152]) by smtp.gmail.com with ESMTPSA id r6sm3340484wmd.4.2017.01.26.03.53.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 26 Jan 2017 03:53:47 -0800 (PST) Date: Thu, 26 Jan 2017 12:04:00 -0000 From: Kirill Yukhin To: Thomas Schwinge Cc: Andrew Senkevich , Uros Bizjak , Jakub Jelinek , GCC Patches , Richard Biener Subject: Re: [PATCH] Add AVX512 k-mask intrinsics Message-ID: <20170126115342.GB29912@ubuntu> References: <20170119103859.GA35306@ubuntu> <20170119175506.GA5570@ubuntu> <20170120170801.GA3718@ubuntu> <874m0mchdf.fsf@euler.schwinge.homeip.net> <20170126104454.GA55910@ubuntu> <87d1favy6d.fsf@hertz.schwinge.homeip.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87d1favy6d.fsf@hertz.schwinge.homeip.net> User-Agent: Mutt/1.5.24 (2015-08-30) X-IsSubscribed: yes X-SW-Source: 2017-01/txt/msg02039.txt.bz2 Hi, On 26 Jan 12:49, Thomas Schwinge wrote: > Hi! > > On Thu, 26 Jan 2017 02:44:56 -0800, Kirill Yukhin wrote: > > On 26 Jan 10:14, Thomas Schwinge wrote: > > > I see: > > > > > > {+FAIL: gcc.target/i386/avx512f-ktestw-2.c (test for excess errors)+} > > > {+UNRESOLVED: gcc.target/i386/avx512f-ktestw-2.c compilation failed to produce executable+} > > > > > > ... because of: > > > > > > /tmp/ccjv3mX2.s: Assembler messages: > > > /tmp/ccjv3mX2.s:26: Error: no such instruction: `ktestw %k1,%k0' > > > compiler exited with status 1 > > Which version of gas do you use? > > A rather old one on that Ubuntu 12.10 system: > > $ as --version > GNU assembler (GNU Binutils for Ubuntu) 2.22.90.20120924 > [...] > > > It should be OK since v2.25. > > OK, but as done for other tests, for older versions such testing then > should be UNSUPPORTED instead of FAIL/UNRESOLVED (as long as that is > practicable, which has already been described how to do, as I understand > the other messages). This is a bug as Uroš properly mentioned. Will fix. -- Thanks, K > > > Grüße > Thomas