From patchwork Sat Jul 14 01:14:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Pinski X-Patchwork-Id: 170986 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 CF98E2C031A for ; Sat, 14 Jul 2012 11:15:17 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1342833318; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=GwZ9OwM mcuOeR/FkoJWRra2rUhg=; b=WvYZvubQp++kB8AAiL8NWffXDz7rCzvrtT2LDB+ BTGAPNAaSIUnz8nMeyWNyPnzL0AHpoYy+Qj0RCBxItoJthz+4a+ACEr8LpM//xqo M4J+Pie5nOtTqR4Nx06xLeqc0aA4vht9HIoajYHp7zM96SHSfjR+XMOUeSXASfoh e2YA= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=IVCR4R9Yt7j7rR15g7sRfbV3ButEDI/COYTKFClSNG5tNnuB448Gd1X/vgWtcb hPM2wi6oe0LWrSRYvf8NuoVgP1djLkVThSTNjNqdvDSnSAMM5Al1CBHolg7V1mQI 0fCq0YOoUwpnTYERmELd156zkO5ilXWwecLNrOAjJuYVg=; Received: (qmail 20916 invoked by alias); 14 Jul 2012 01:15:13 -0000 Received: (qmail 20904 invoked by uid 22791); 14 Jul 2012 01:15:12 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-wi0-f173.google.com (HELO mail-wi0-f173.google.com) (209.85.212.173) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 14 Jul 2012 01:14:58 +0000 Received: by wibhm6 with SMTP id hm6so955626wib.8 for ; Fri, 13 Jul 2012 18:14:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.216.139.196 with SMTP id c46mr906234wej.220.1342228497465; Fri, 13 Jul 2012 18:14:57 -0700 (PDT) Received: by 10.216.229.136 with HTTP; Fri, 13 Jul 2012 18:14:57 -0700 (PDT) Date: Fri, 13 Jul 2012 18:14:57 -0700 Message-ID: Subject: [Committed] fix testcase cleanup of octeon2-pipe-1.c and octeon-pipe-1.c From: Andrew Pinski To: GCC Patches 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, The two testcases octeon2-pipe-1.c and octeon-pipe-1.c cleanup their dump files using cleanup-tree-dump but the dump files where are supposed to be cleaned up are rtl ones. This patch which I committed as obvious fix that. Committed after testing on mips64-linux-gnu with no regressions. Thanks, Andrew Pinski 2012-07-13 Andrew Pinski * gcc.target/mips/octeon2-pipe-1.c: Use cleanup-rtl-dump rather than cleanup-tree-dump. * gcc.target/mips/octeon-pipe-1.c: Likewise. Index: gcc.target/mips/octeon2-pipe-1.c =================================================================== --- gcc.target/mips/octeon2-pipe-1.c (revision 189401) +++ gcc.target/mips/octeon2-pipe-1.c (working copy) @@ -8,4 +8,4 @@ NOMIPS16 int f (int a, int b) } /* { dg-final { scan-rtl-dump "octeon_mult\\*17" "sched2" } } */ -/* { dg-final { cleanup-tree-dump "sched2" } } */ +/* { dg-final { cleanup-rtl-dump "sched2" } } */ Index: gcc.target/mips/octeon-pipe-1.c =================================================================== --- gcc.target/mips/octeon-pipe-1.c (revision 189401) +++ gcc.target/mips/octeon-pipe-1.c (working copy) @@ -8,4 +8,4 @@ NOMIPS16 int f (int a, int b) } /* { dg-final { scan-rtl-dump "octeon_mult\\*71" "sched2" } } */ -/* { dg-final { cleanup-tree-dump "sched2" } } */ +/* { dg-final { cleanup-rtl-dump "sched2" } } */ Index: ChangeLog =================================================================== --- ChangeLog (revision 189476) +++ ChangeLog (working copy) @@ -1,3 +1,9 @@ +2012-07-13 Andrew Pinski + + * gcc.target/mips/octeon2-pipe-1.c: Use cleanup-rtl-dump + rather than cleanup-tree-dump. + * gcc.target/mips/octeon-pipe-1.c: Likewise. + 2012-07-13 Richard Guenther PR tree-optimization/53907