From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 22:45:00 -0000 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: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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 X-SW-Source: 2012-11/txt/msg00665.txt.bz2 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;