From patchwork Wed Nov 7 22:45:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vladimir Makarov X-Patchwork-Id: 197736 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id CD7E12C00B5 for ; Thu, 8 Nov 2012 09:45:31 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1352933132; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=AOOK20d21pdbOJ/6hkk+ +PiFODI=; b=xfv4B5pp2n9PI3gl7xeSmJGBqHknteU0DboefnlAYqOKGRxJHmd/ LJ5ssuUj8Q8hVJpxhSLVr5lCpSyI5atXomVlmoawiw/6LKDOmcX2Bj3+2e8d3+AT +/oSb8nrug5z5rlybjGkjANzmWTM+8iMNI4rlI/ak+zmLpBX21uq42M= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=Va0jnx0JKwHxBjgrESZ4eCRuzsFhZu283CQj05HEfvJvXfmsM1HYo7bMGIF5n5 i9H/yx/1RKeJIBxImV0lOpeK+HXsUt62Z0hZllNqOoc5MpHdF3jbc+IdjIH+bxvp shBWruDkxIj2ryuUfupT3ZXGd3qx6uIas9qRKNNvIO6tk=; Received: (qmail 28129 invoked by alias); 7 Nov 2012 22:45:21 -0000 Received: (qmail 28117 invoked by uid 22791); 7 Nov 2012 22:45:19 -0000 X-SWARE-Spam-Status: No, hits=-7.3 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, KHOP_SPAMHAUS_DROP, KHOP_THREADED, RCVD_IN_DNSWL_HI, RCVD_IN_HOSTKARMA_W, RP_MATCHES_RCVD, SPF_HELO_PASS, TW_ZJ X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 07 Nov 2012 22:45:10 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qA7Mj9Hl017327 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 7 Nov 2012 17:45:09 -0500 Received: from Mair.local (vpn-11-127.rdu.redhat.com [10.11.11.127]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qA7Mj8Uo006877; Wed, 7 Nov 2012 17:45:08 -0500 Message-ID: <509AE474.4000103@redhat.com> Date: Wed, 07 Nov 2012 17:45:08 -0500 From: Vladimir Makarov User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:16.0) Gecko/20121026 Thunderbird/16.0.2 MIME-Version: 1.0 To: "H.J. Lu" CC: GCC Patches Subject: Re: patch fixing a test for PR55151 References: <509ADEE0.5090508@redhat.com> In-Reply-To: X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org On 12-11-07 5:27 PM, H.J. Lu wrote: > On Wed, Nov 7, 2012 at 2:21 PM, Vladimir Makarov wrote: >> The following patch adds omitted target for the test. The test was >> supposed to run on x86-64 only. On 32-bit x86, it should fail. Reload >> fails on this test on x86 too although with an error message. I am going to >> add a generation of a message too. >> >> Committed as rev. 193311. >> >> 2012-11-07 Vladimir Makarov >> >> PR rtl-optimization/55151 >> * gcc.dg/pr55151.c: Compile it only for x86_64. >> > Checking x86_64-*-* target is incorrect since i686 GCC can support > 64-bit. You should check !ia32 target: > > /* { dg-do compile { target { ! { ia32 } } } } */ > > Thanks, H.J. I've just fixed it. Index: testsuite/ChangeLog =================================================================== --- testsuite/ChangeLog (revision 193316) +++ testsuite/ChangeLog (working copy) @@ -1,3 +1,8 @@ +2012-11-07 Vladimir Makarov + + PR rtl-optimization/55151 + * gcc.dg/pr55151.c: Use ia32 instead of x86_64. + 2012-11-05 Uros Bizjak * gcc.dg/tree-ssa/cunroll-1.c: Scan cunrolli dump. Index: testsuite/gcc.dg/pr55151.c =================================================================== --- testsuite/gcc.dg/pr55151.c (revision 193316) +++ testsuite/gcc.dg/pr55151.c (working copy) @@ -1,5 +1,5 @@ /* PR rtl-optimization/55151 */ -/* { dg-do compile { target x86_64-*-* } } */ +/* { dg-do compile { target { ! { ia32 } } } } */ /* { dg-options "-fPIC" } */ int a, b, c, d, e, f, g, h, i, j, k, l;