From patchwork Tue Oct 29 15:47:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew MacLeod X-Patchwork-Id: 286872 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C78042C034E for ; Wed, 30 Oct 2013 02:47:25 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=GtheJVQwSy1zl0KYU8Otm284Mz+KJakBXok8C3nEA1C1B9 fo81Wa8tTbr6ngU4EkUN57uuW+s4no/v2RwL+CitT70hknNF879DXfHf528FCg50 5HRwPXJ3X7/kisLEgHNkzY80MH9DMglf9O1HwgyRDA3Mob/Ah+zDUiB9Kb3DI= 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 :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=1mtqDPEMHzbOa+it6JFy7YoOOvQ=; b=xyeo71grdyN9nxv8MHge 3DqbbnB5CwaX5U1ySN8TKUX8X5V+B8QoG7ptaJMH6hiuPl8nAzbOrpH1xPEIl3pN Ho51QuCGQnry4Zcj52hD4nb73f5Kw7Zw3WPn4J7QGWlf99t3RIerZ51c3CvP9/aI VCePtNyi8rdiB4OTz+3bKsw= Received: (qmail 4183 invoked by alias); 29 Oct 2013 15:47:20 -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 4158 invoked by uid 89); 29 Oct 2013 15:47:16 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham 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 ESMTP; Tue, 29 Oct 2013 15:47:16 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r9TFlF5i027245 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 29 Oct 2013 11:47:15 -0400 Received: from [10.10.62.103] (vpn-62-103.rdu2.redhat.com [10.10.62.103]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r9TFlEp3005098 for ; Tue, 29 Oct 2013 11:47:14 -0400 Message-ID: <526FD882.10702@redhat.com> Date: Tue, 29 Oct 2013 11:47:14 -0400 From: Andrew MacLeod User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130805 Thunderbird/17.0.8 MIME-Version: 1.0 To: gcc-patches Subject: [patch] fix fallout from lto-streamer.h not including gimple.h X-IsSubscribed: yes 2 target files also included lto-streamer.h but did not include gimple.h. Fixed thusly. Applied as revision 204166 Andrew * config/darwin.c: Include gimple.h. * config/i386/winnt.c: Likewise. Index: config/darwin.c =================================================================== *** config/darwin.c (revision 204164) --- config/darwin.c (working copy) *************** along with GCC; see the file COPYING3. *** 45,50 **** --- 45,51 ---- #include "df.h" #include "debug.h" #include "obstack.h" + #include "gimple.h" #include "lto-streamer.h" /* Darwin supports a feature called fix-and-continue, which is used Index: config/i386/winnt.c =================================================================== *** config/i386/winnt.c (revision 204164) --- config/i386/winnt.c (working copy) *************** along with GCC; see the file COPYING3. *** 35,40 **** --- 35,41 ---- #include "ggc.h" #include "target.h" #include "except.h" + #include "gimple.h" #include "lto-streamer.h" /* i386/PE specific attribute support.