From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18254 invoked by alias); 18 Jul 2013 16:25:50 -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 18222 invoked by uid 89); 18 Jul 2013 16:25:50 -0000 X-Spam-SWARE-Status: No, score=-5.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RDNS_NONE,SPF_HELO_PASS,SPF_PASS autolearn=no version=3.3.1 Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 18 Jul 2013 16:25:49 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6IGPgIt024504 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 18 Jul 2013 12:25:42 -0400 Received: from localhost.localdomain (vpn1-5-39.ams2.redhat.com [10.36.5.39]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r6IGPdqU004778 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 18 Jul 2013 12:25:41 -0400 Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost.localdomain (8.14.7/8.14.7) with ESMTP id r6IGPbIn006693; Thu, 18 Jul 2013 18:25:38 +0200 Received: (from jakub@localhost) by localhost.localdomain (8.14.7/8.14.7/Submit) id r6IGPaGE006691; Thu, 18 Jul 2013 18:25:36 +0200 Date: Thu, 18 Jul 2013 16:25:00 -0000 From: Jakub Jelinek To: David Malcolm Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH 2/4] Move the construction of the pass hierarchy into a new passes.def file. Message-ID: <20130718162536.GB23578@laptop.redhat.com> Reply-To: Jakub Jelinek References: <1374110303-9758-1-git-send-email-dmalcolm@redhat.com> <1374110303-9758-3-git-send-email-dmalcolm@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1374110303-9758-3-git-send-email-dmalcolm@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2013-07/txt/msg00725.txt.bz2 On Wed, Jul 17, 2013 at 09:18:21PM -0400, David Malcolm wrote: > --- /dev/null > +++ b/gcc/passes.def > @@ -0,0 +1,405 @@ > +/* Description of pass structure > + Copyright (C) 2013 Free Software Foundation, Inc. Shouldn't this be 1987-2013 instead? I mean, it isn't really a new file, the content comes from passes.c whose stuff dates up to 1987. Jakub