From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 108867 invoked by alias); 7 Jul 2015 22:10:09 -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 108319 invoked by uid 89); 7 Jul 2015 22:10:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 07 Jul 2015 22:10:08 +0000 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 158C4B0FA0 for ; Tue, 7 Jul 2015 22:10:06 +0000 (UTC) Received: from [10.10.63.37] (vpn-63-37.rdu2.redhat.com [10.10.63.37]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t67MA5Qs028493; Tue, 7 Jul 2015 18:10:06 -0400 Message-ID: <559C4E3D.7030706@redhat.com> Date: Tue, 07 Jul 2015 22:10:00 -0000 From: Andrew MacLeod User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Pedro Alves , gcc-patches@gcc.gnu.org Subject: Re: [patch 9/9] Final patch with all changes References: <559BD6B3.2080207@redhat.com> <559BD977.4060907@redhat.com> <559C4CAB.4040008@redhat.com> In-Reply-To: <559C4CAB.4040008@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00553.txt.bz2 On 07/07/2015 06:03 PM, Pedro Alves wrote: > On 07/07/2015 02:51 PM, Andrew MacLeod wrote: >> *** sel-sched-ir.h (revision 225452) >> --- sel-sched-ir.h (working copy) >> *************** along with GCC; see the file COPYING3. >> *** 22,34 **** >> #define GCC_SEL_SCHED_IR_H >> >> /* For state_t. */ >> - #include "insn-attr.h" >> - #include "regset.h" >> /* For reg_note. */ >> - #include "rtl.h" >> - #include "bitmap.h" >> - #include "sched-int.h" >> - #include "cfgloop.h" >> > Should probably drop those "For state_t/reg_note." comments too. > > Thanks, > Pedro Alves Ah right. Previous version had them removed. Missed them when I rebuilt the patch. Thanks Andrew