From patchwork Tue Dec 2 21:09:50 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jack Howarth X-Patchwork-Id: 417146 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46EA8140172 for ; Wed, 3 Dec 2014 08:10:02 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; q= dns; s=default; b=SXKVW+npM7EBwaeE1P+4PFac8gNWN5uSZYMBFGlmihkkNM H4r1PilMnR2rBBAbo5D7IsYAVhHw7mbTs5Fdk08YkfElXCq4lj4MQticGvwnL9AU hfay0nbS1JauDENJEvXTC66uOKgvdsfTSQ3HIFatlj7NkB/Knoeky1vdjf6fM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; s= default; bh=wD2OXCeZ+AajXef5KiHgXqGqYFE=; b=S9lV4sO368YxKsYVH8WA XbCaTfVZt9rclGZxgBh7Ed+70ZeHOypOyigeuP6EaNAbUYvg1NGQkjhclBAlEuvd BtiA6zTI2xYZzBYeC12qnU8XK7kl5QbldssS6B7EpVFevHNIhJFf3r3sdY9m2kh0 DIW0L5wIDEwTIt/QIOcMUxI= Received: (qmail 10389 invoked by alias); 2 Dec 2014 21:09:54 -0000 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 Received: (qmail 10377 invoked by uid 89); 2 Dec 2014 21:09:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 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-f42.google.com Received: from mail-oi0-f42.google.com (HELO mail-oi0-f42.google.com) (209.85.218.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 02 Dec 2014 21:09:52 +0000 Received: by mail-oi0-f42.google.com with SMTP id v63so9935749oia.1 for ; Tue, 02 Dec 2014 13:09:51 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.202.217.137 with SMTP id q131mr866548oig.100.1417554590847; Tue, 02 Dec 2014 13:09:50 -0800 (PST) Received: by 10.76.112.72 with HTTP; Tue, 2 Dec 2014 13:09:50 -0800 (PST) Date: Tue, 2 Dec 2014 16:09:50 -0500 Message-ID: Subject: [PATCH] fix PR testsuite/64145 From: Jack Howarth To: GCC Patches , Roman Gareev X-IsSubscribed: yes The attached patch fixes the regression in the gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c testcase caused by the accidental removal of -fgraphite-identity from dg-options at r217315. Okay for gcc trunk? Jack 2014-12-01 Jack Howarth PR testsuite/64145 * gcc.dg/graphite/isl-codegen-loop-dumping.c: Restore -fgraphite-identity. Index: gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c =================================================================== --- gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c (revision 218285) +++ gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c (working copy) @@ -1,4 +1,4 @@ -/* { dg-options "-O2 -fdump-tree-graphite-all" } */ +/* { dg-options "-O2 -fgraphite-identity -fdump-tree-graphite-all" } */ int main (int n, int *a)