From patchwork Fri Nov 22 16:02:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew MacLeod X-Patchwork-Id: 293508 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)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BE3832C0084 for ; Sat, 23 Nov 2013 03:03:23 +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:cc:subject:references :in-reply-to:content-type; q=dns; s=default; b=w+WTea75a8GR/NNXg 1Zi8NPTSw6Z6VeQbZ5Xoq0GvNmoomsVK/t8kMdOkMSngLvZTVspHfFRzqsq1Wx6c ld9pmvAwimVvRyKHmkwPiBKKG/Sy3R6Fp/eiCX8M0Q5iy0Bd3lg8WR1KybZjvyOq 4brHWGkKMtXhNgW5w92B/R42FQ= 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:cc:subject:references :in-reply-to:content-type; s=default; bh=lLK8KDkEwMpAIzyhghd81+g hc8A=; b=aMS7uVayVn/w9BApUXC7VrIyM8LT6i9oMv3uODYUSgubiUk/Pnr0sUc F6wrIfip3y48687n8loOunmmBLz9B3Xw5BY2qKrKoKuzOnEq4U4fEoQpI9Lzz9a+ H0GPpxcjrX6Mn0t2JNscO19NInpzlKgMmOEEhwbcdwFuqUn5+oP8= Received: (qmail 30591 invoked by alias); 22 Nov 2013 16:03:12 -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 30567 invoked by uid 89); 22 Nov 2013 16:03:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL, BAYES_50, RDNS_NONE, SPF_HELO_PASS, SPF_PASS, URIBL_BLOCKED autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 22 Nov 2013 16:02:26 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id rAMG2IS0004938 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 22 Nov 2013 11:02:18 -0500 Received: from [10.10.59.150] (vpn-59-150.rdu2.redhat.com [10.10.59.150]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id rAMG2HBd014780; Fri, 22 Nov 2013 11:02:17 -0500 Message-ID: <528F8009.1050808@redhat.com> Date: Fri, 22 Nov 2013 11:02:17 -0500 From: Andrew MacLeod User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: Ian Lance Taylor CC: Jeff Law , gcc-patches , Richard Biener Subject: Re: [patch 1/3] Flatten gimple.h - go front end changes References: <528E4DAD.6080409@redhat.com> <528E5F7E.5030902@redhat.com> In-Reply-To: <528E5F7E.5030902@redhat.com> X-IsSubscribed: yes On 11/21/2013 02:31 PM, Jeff Law wrote: > On 11/21/13 11:15, Andrew MacLeod wrote: >> >> >> This bootstraps on x86_64-unknown-linux-gnu, and regressions are >> currently running. Assuming it passes fine, OK? > patch#1 in the series is fine too. > > Checked in as revision 205272. Ian, here is the go frontend patches that need to be applied: Andrew 2013-11-22 Andrew MacLeod * go/gofrontend/expressions.cc: Add required include files from gimple.h. * go/gofrontend/gogo-tree.cc: Likewise * go/gofrontend/types.cc: Likewise Index: go/gofrontend/expressions.cc =================================================================== *** go/gofrontend/expressions.cc (revision 205270) --- go/gofrontend/expressions.cc (working copy) *************** *** 13,20 **** #include "tree.h" #include "stringpool.h" #include "stor-layout.h" ! #include "gimple.h" ! #include "gimplify.h" #include "tree-iterator.h" #include "convert.h" #include "real.h" --- 13,19 ---- #include "tree.h" #include "stringpool.h" #include "stor-layout.h" ! #include "gimple-expr.h" #include "tree-iterator.h" #include "convert.h" #include "real.h" Index: go/gofrontend/gogo-tree.cc =================================================================== *** go/gofrontend/gogo-tree.cc (revision 205270) --- go/gofrontend/gogo-tree.cc (working copy) *************** *** 11,17 **** #include "stringpool.h" #include "stor-layout.h" #include "varasm.h" ! #include "gimple.h" #include "gimplify.h" #include "tree-iterator.h" #include "cgraph.h" --- 11,17 ---- #include "stringpool.h" #include "stor-layout.h" #include "varasm.h" ! #include "gimple-expr.h" #include "gimplify.h" #include "tree-iterator.h" #include "cgraph.h" Index: go/gofrontend/types.cc =================================================================== *** go/gofrontend/types.cc (revision 205270) --- go/gofrontend/types.cc (working copy) *************** *** 9,16 **** #include "toplev.h" #include "intl.h" #include "tree.h" - #include "gimple.h" - #include "gimplify.h" #include "real.h" #include "convert.h" --- 9,14 ----