From patchwork Tue Jun 21 21:48:46 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janis Johnson X-Patchwork-Id: 101381 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 16B7FB6F8B for ; Wed, 22 Jun 2011 07:46:47 +1000 (EST) Received: (qmail 7985 invoked by alias); 21 Jun 2011 21:46:45 -0000 Received: (qmail 7976 invoked by uid 22791); 21 Jun 2011 21:46:45 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 21 Jun 2011 21:46:31 +0000 Received: (qmail 25613 invoked from network); 21 Jun 2011 21:46:30 -0000 Received: from unknown (HELO ?192.168.1.5?) (janisjo@127.0.0.2) by mail.codesourcery.com with ESMTPA; 21 Jun 2011 21:46:30 -0000 Message-ID: <4E0111BE.1030004@codesourcery.com> Date: Tue, 21 Jun 2011 14:48:46 -0700 From: Janis Johnson User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110424 Thunderbird/3.1.10 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" Subject: [testsuite] ARM: don't specify unneeded -march 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 I modified these tests last week to check for thumb support and to ignore messages about conflicting options, but -march isn't needed and so there shouldn't be any conflicting options. OK? 2011-06-21 Janis Johnson * gcc.target/arm/pr45701-1.c: Don't specify -march; remove dg-prune-output. * gcc.target/arm/pr45701-2.c: Ditto. Index: gcc.target/arm/pr45701-1.c =================================================================== --- gcc.target/arm/pr45701-1.c (revision 175269) +++ gcc.target/arm/pr45701-1.c (working copy) @@ -1,7 +1,6 @@ /* { dg-do compile } */ /* { dg-skip-if "" { ! { arm_thumb1_ok || arm_thumb2_ok } } } */ -/* { dg-options "-march=armv7-a -mthumb -Os" } */ -/* { dg-prune-output "switch .* conflicts with" } */ +/* { dg-options "-mthumb -Os" } */ /* { dg-final { scan-assembler "push\t\{r3" } } */ /* { dg-final { scan-assembler-not "r8" } } */ Index: gcc.target/arm/pr45701-2.c =================================================================== --- gcc.target/arm/pr45701-2.c (revision 175269) +++ gcc.target/arm/pr45701-2.c (working copy) @@ -1,7 +1,6 @@ /* { dg-do compile } */ /* { dg-skip-if "" { ! { arm_thumb1_ok || arm_thumb2_ok } } } */ -/* { dg-options "-march=armv7-a -mthumb -Os" } */ -/* { dg-prune-output "switch .* conflicts with" } */ +/* { dg-options "-mthumb -Os" } */ /* { dg-final { scan-assembler "push\t\{r3" } } */ /* { dg-final { scan-assembler-not "r8" } } */