From patchwork Thu Oct 20 10:42:55 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Biener X-Patchwork-Id: 684545 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 3t054k5lbdz9sD6 for ; Thu, 20 Oct 2016 21:43:18 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=r1g6DhVc; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:in-reply-to:message-id:references :mime-version:content-type; q=dns; s=default; b=nYfezg5VM1/cDPXN svzK17zixSFaN4iMf2WeoomwvBlJDjcWKw3jsRj+EaBCbL/WiawgGQMln0YwYyBk Xz0wfAPmp+bpAy0hmuNGeXDzozXtX1N8f6R09BVnKn2GbsswlJny63DWyrAV05pF epab6GQU9IN9jHdRKKdw9XSWL30= 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:date :from:to:cc:subject:in-reply-to:message-id:references :mime-version:content-type; s=default; bh=ECqHZYAh0YsbbBK4+nf4IW mlFY0=; b=r1g6DhVcaoDyEfv6+WQ0J8sc81UzILhIDCiQRwc/+Qhdj/uQJPkO2q XU5Ie8XDsf0S4J1TfUPFua4PRoGpsoxpd11EH5K+81akik91vyWZeww3aZ4egirM APFzfJZShSRZcrWYoQkGPHyRleXbshdw+KaGogWbznrboO1hM7uR0= Received: (qmail 20046 invoked by alias); 20 Oct 2016 10:43:08 -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 20002 invoked by uid 89); 20 Oct 2016 10:43:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx2.suse.de Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 20 Oct 2016 10:42:57 +0000 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 3531FAC31 for ; Thu, 20 Oct 2016 10:42:55 +0000 (UTC) Date: Thu, 20 Oct 2016 12:42:55 +0200 (CEST) From: Richard Biener To: Andreas Schwab cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH] Use RPO order for domwalk dominator children sort In-Reply-To: Message-ID: References: User-Agent: Alpine 2.11 (LSU 23 2013-08-11) MIME-Version: 1.0 On Thu, 20 Oct 2016, Andreas Schwab wrote: > On Okt 18 2016, Richard Biener wrote: > > > * domwalk.c (dom_walker::walk): Use RPO order. > > FAIL: gcc.dg/graphite/pr35356-1.c scan-tree-dump graphite "if \\(P_8 >= P_9 \\+ 1 && P_9 >= 0\\) \\{" Fixed. 2016-10-20 Richard Biener * gcc.dg/graphite/pr35356-1.c: Update. Index: testsuite/gcc.dg/graphite/pr35356-1.c =================================================================== --- testsuite/gcc.dg/graphite/pr35356-1.c (revision 241363) +++ testsuite/gcc.dg/graphite/pr35356-1.c (working copy) @@ -34,4 +34,4 @@ if (n >= k + 1 && k >= 0) { */ -/* { dg-final { scan-tree-dump "if \\\(P_8 >= P_9 \\\+ 1 && P_9 >= 0\\\) \\\{" "graphite" } } */ +/* { dg-final { scan-tree-dump "if \\\(P_8 >= P_11 \\\+ 1 && P_11 >= 0\\\) \\\{" "graphite" } } */