From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 119793 invoked by alias); 11 Dec 2015 20:27:06 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 119782 invoked by uid 89); 11 Dec 2015 20:27:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: fencepost.gnu.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (208.118.235.10) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 11 Dec 2015 20:27:03 +0000 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40022) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1a7UHN-0003Vh-9U for gcc-patches@gnu.org; Fri, 11 Dec 2015 15:27:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a7UHI-0001zP-U6 for gcc-patches@gnu.org; Fri, 11 Dec 2015 15:27:00 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52640) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a7UHI-0001yg-OX for gcc-patches@gnu.org; Fri, 11 Dec 2015 15:26:56 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id BAACE68E2F; Fri, 11 Dec 2015 20:26:55 +0000 (UTC) Received: from localhost.localdomain (ovpn-113-83.phx2.redhat.com [10.3.113.83]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tBBKQt1Q009975; Fri, 11 Dec 2015 15:26:55 -0500 Subject: Re: [PATCH] Add pass parameter to TERMINATE_PASS_LIST To: Tom de Vries , "gcc-patches@gnu.org" References: <566AAC96.2020304@mentor.com> From: Jeff Law Message-ID: <566B318F.9060304@redhat.com> Date: Fri, 11 Dec 2015 20:27:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <566AAC96.2020304@mentor.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 X-IsSubscribed: yes X-SW-Source: 2015-12/txt/msg01305.txt.bz2 On 12/11/2015 03:59 AM, Tom de Vries wrote: > Hi, > > This patch adds a parameter to TERMINATE_PASS_LIST, that should match > the pass list it's supposed to terminate. > > The intention of the patch is that it: > - makes it easier to understand the top-level hierarchy of the pass > list (given that the top-level list may be quite long). > - ensures that INSERT_PASSES_AFTER and TERMINATE_PASS_LIST are paired. > > OK for stage3/stage1 trunk, if bootstrap and reg-test succeeds? I'd prefer to wait for stage1 on this. It feels like we've got way too much macro-magic going on in here. I guess as long as we have the macro-magic in here, verification like this is OK. Jeff