From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12685 invoked by alias); 13 Oct 2011 09:41:05 -0000 Received: (qmail 12675 invoked by uid 22791); 13 Oct 2011 09:41:04 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-vx0-f175.google.com (HELO mail-vx0-f175.google.com) (209.85.220.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 13 Oct 2011 09:40:50 +0000 Received: by vcbf1 with SMTP id f1so1549557vcb.20 for ; Thu, 13 Oct 2011 02:40:49 -0700 (PDT) Received: by 10.52.69.67 with SMTP id c3mr2847401vdu.106.1318498849056; Thu, 13 Oct 2011 02:40:49 -0700 (PDT) MIME-Version: 1.0 Received: by 10.220.150.13 with HTTP; Thu, 13 Oct 2011 02:40:29 -0700 (PDT) In-Reply-To: References: From: Artem Shinkarov Date: Thu, 13 Oct 2011 10:18:00 -0000 Message-ID: Subject: Re: New warning for expanded vector operations To: Richard Guenther Cc: Mike Stump , "H.J. Lu" , GCC Patches Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 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: 2011-10/txt/msg01080.txt.bz2 On Thu, Oct 13, 2011 at 10:23 AM, Richard Guenther wrote: > On Thu, Oct 13, 2011 at 10:59 AM, Mike Stump wrot= e: >> On Oct 12, 2011, at 2:37 PM, Artem Shinkarov wrote: >>> This patch fixed PR50704. >>> >>> gcc/testsuite: >>> =A0 =A0 =A0 =A0* gcc.target/i386/warn-vect-op-3.c: Exclude ia32 target. >>> =A0 =A0 =A0 =A0* gcc.target/i386/warn-vect-op-1.c: Ditto. >>> =A0 =A0 =A0 =A0* gcc.target/i386/warn-vect-op-2.c: Ditto. >>> >>> Ok for trunk? >> >> Ok. =A0Is this x32 clean? =A0:-) =A0If not, HJ will offer an even better= spelling. > > I suppose you instead want sth like > > { dg-require-effective-target lp64 } > > ? > See our discussion with HJ here: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D50704 /* { dg-do compile { target { ! { ia32 } } } } */ was his idea. As far as x32 sets UNITS_PER_WORD to 8, these tests should work fine. Artem.