From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8707 invoked by alias); 11 Dec 2015 11:19: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 8698 invoked by uid 89); 11 Dec 2015 11:19:52 -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,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: e06smtp09.uk.ibm.com Received: from e06smtp09.uk.ibm.com (HELO e06smtp09.uk.ibm.com) (195.75.94.105) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (CAMELLIA256-SHA encrypted) ESMTPS; Fri, 11 Dec 2015 11:19:50 +0000 Received: from localhost by e06smtp09.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 11 Dec 2015 11:19:47 -0000 Received: from d06dlp03.portsmouth.uk.ibm.com (9.149.20.15) by e06smtp09.uk.ibm.com (192.168.101.139) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Fri, 11 Dec 2015 11:19:43 -0000 X-IBM-Helo: d06dlp03.portsmouth.uk.ibm.com X-IBM-MailFrom: krebbel@linux.vnet.ibm.com X-IBM-RcptTo: gcc-patches@gcc.gnu.org Received: from b06cxnps4075.portsmouth.uk.ibm.com (d06relay12.portsmouth.uk.ibm.com [9.149.109.197]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 2A15B1B08069 for ; Fri, 11 Dec 2015 11:20:13 +0000 (GMT) Received: from d06av05.portsmouth.uk.ibm.com (d06av05.portsmouth.uk.ibm.com [9.149.37.229]) by b06cxnps4075.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id tBBBJhC710223972 for ; Fri, 11 Dec 2015 11:19:43 GMT Received: from d06av05.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id tBBBJgBd030672 for ; Fri, 11 Dec 2015 04:19:42 -0700 Received: from [9.164.137.15] (icon-9-164-137-15.megacenter.de.ibm.com [9.164.137.15]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id tBBBJgxr030644; Fri, 11 Dec 2015 04:19:42 -0700 Subject: Re: S/390: Fix warnings in "*setmem_long..." patterns. To: gcc-patches@gcc.gnu.org, vogt@linux.vnet.ibm.com References: <20151202125141.9BF6CF8BB@oc7340732750.ibm.com> <565EEE13.3010405@linux.vnet.ibm.com> <565EEFBE.3090103@linux.vnet.ibm.com> <20151204171549.GA7839@linux.vnet.ibm.com> From: Andreas Krebbel Message-ID: <566AB14E.3040404@linux.vnet.ibm.com> Date: Fri, 11 Dec 2015 11:19:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <20151204171549.GA7839@linux.vnet.ibm.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15121111-0037-0000-0000-000004F226AE X-IsSubscribed: yes X-SW-Source: 2015-12/txt/msg01247.txt.bz2 On 12/04/2015 06:15 PM, Dominik Vogt wrote: > Version 5 with the latest requested changes. Seems to work now. > I've dropped the extra patch and rather marked the failing tests > as "xfail". > > Ciao > > Dominik ^_^ ^_^ > Patch applied with minor changes: > + ; Convert Pmode to BLKmode > + UNSPEC_REPLICATE_BYTE That comment did not really fit after changing the name of the unspec. > -(define_expand "setmem_long" > +(define_expand "setmem_long_" > [(parallel > [(clobber (match_dup 1)) > (set (match_operand:BLK 0 "memory_operand" "") > - (match_operand 2 "shift_count_or_setmem_operand" "")) > - (use (match_operand 1 "general_operand" "")) > + (unspec:BLK [(match_operand:P 2 "shift_count_or_setmem_operand" "Y") Superfluous constraint removed. Thanks! -Andreas-