From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26805 invoked by alias); 29 Jan 2015 14:44:31 -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 26793 invoked by uid 89); 29 Jan 2015 14:44:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-oi0-f49.google.com Received: from mail-oi0-f49.google.com (HELO mail-oi0-f49.google.com) (209.85.218.49) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 29 Jan 2015 14:44:27 +0000 Received: by mail-oi0-f49.google.com with SMTP id a3so27169883oib.8 for ; Thu, 29 Jan 2015 06:44:25 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.182.56.70 with SMTP id y6mr545838obp.55.1422542665149; Thu, 29 Jan 2015 06:44:25 -0800 (PST) Received: by 10.60.159.166 with HTTP; Thu, 29 Jan 2015 06:44:25 -0800 (PST) Date: Thu, 29 Jan 2015 15:51:00 -0000 Message-ID: Subject: Re: [PATCH][PR target/15184] Fix for direct byte access on x86 From: Uros Bizjak To: "gcc-patches@gcc.gnu.org" Cc: Jeff Law Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-01/txt/msg02619.txt.bz2 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" } */ Uros.