From patchwork Wed Aug 4 19:24:44 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Jambor X-Patchwork-Id: 60891 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 8C8231007D1 for ; Thu, 5 Aug 2010 05:25:00 +1000 (EST) Received: (qmail 31777 invoked by alias); 4 Aug 2010 19:24:56 -0000 Received: (qmail 31764 invoked by uid 22791); 4 Aug 2010 19:24:55 -0000 X-SWARE-Spam-Status: No, hits=-3.7 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 04 Aug 2010 19:24:47 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) by mx2.suse.de (Postfix) with ESMTP id 11C6288B6C for ; Wed, 4 Aug 2010 21:24:45 +0200 (CEST) Date: Wed, 4 Aug 2010 21:24:44 +0200 From: Martin Jambor To: GCC Patches Subject: [PATCH, testsuite, PR 42855] Skip test for PR 42585 on ppc and arm Message-ID: <20100804192444.GC6199@virgil.arch.suse.de> Mail-Followup-To: GCC Patches MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) 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 Hi, based on David's comment in bugzilla (PR42855) I will commit the patch below tomorrow in the afternoon (CET), unless someone objects. I've already submitted this very patch in March, the original message with links to replies is here: http://gcc.gnu.org/ml/gcc-patches/2010-03/msg00208.html Thanks, Martin 2010-03-03 Martin Jambor PR testsuite/42855 * testsuite/gcc.dg/tree-ssa/pr42585.c: Skip dump scan on powerpc and arm. Index: mine/gcc/testsuite/gcc.dg/tree-ssa/pr42585.c =================================================================== --- mine.orig/gcc/testsuite/gcc.dg/tree-ssa/pr42585.c +++ mine/gcc/testsuite/gcc.dg/tree-ssa/pr42585.c @@ -32,6 +32,6 @@ Cyc_string_ungetc (int ignore, struct _f } /* The local aggregates . */ -/* { dg-final { scan-tree-dump-times "struct _fat_ptr _ans" 0 "optimized"} } */ -/* { dg-final { scan-tree-dump-times "struct _fat_ptr _T2" 0 "optimized"} } */ +/* { dg-final { scan-tree-dump-times "struct _fat_ptr _ans" 0 "optimized" { target { { ! powerpc*-*-* } && { ! arm-*-* } } } } } */ +/* { dg-final { scan-tree-dump-times "struct _fat_ptr _T2" 0 "optimized" { target { { ! powerpc*-*-* } && { ! arm-*-* } } } } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */