From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5678 invoked by alias); 30 Jan 2015 06:12:32 -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 5593 invoked by uid 89); 30 Jan 2015 06:12:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 30 Jan 2015 06:12:28 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t0U6CQKb029655 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Fri, 30 Jan 2015 01:12:27 -0500 Received: from [10.3.113.3] ([10.3.113.3]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t0U6CQ44007052; Fri, 30 Jan 2015 01:12:26 -0500 Message-ID: <54CB20CA.3070709@redhat.com> Date: Fri, 30 Jan 2015 09:21:00 -0000 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Uros Bizjak , "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH][PR target/15184] Fix for direct byte access on x86 References: In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-01/txt/msg02694.txt.bz2 On 01/29/15 07:44, Uros Bizjak wrote: > Hello! > >> So here's the updated patch which handles all 4 testcases from the PR as well as a couple of my own. > > @@ -0,0 +1,33 @@ > +/* PR 15184 first two tests, plus two addition ones. */ > +/* { dg-do compile } */ > +/* { dg-options "-O2 -m32 -march=pentiumpro" } */ > > No, we don't want -m32 in dg-options. Please write this part as: > > /* { dg-do compile { target ia32 } } */ > /* { dg-options "-O2 -march=pentiumpro" } */ Will update after sniff testing. Sorry for the noise. jeff