From patchwork Tue Nov 12 20:30:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew MacLeod X-Patchwork-Id: 290771 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 10BF42C00A6 for ; Wed, 13 Nov 2013 07:31:21 +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=GOOsi8ig1zuulL+dG/YeArVzIz/cMhqI8OzWy24oFmBNdC zli3Sq8POtl6EfkFNb3IgDBKiP9/QvS6i6VNkhczIZbo1mOSTKlfaJ1wOfUFiHzJ naC1bThwYGv29o34NnEdpdDAjrQQQLIxxEKGGa4X6YcQml2IxMvIYBTSDgnKc= 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=xKdW3Bhv/4jGzYuO0TMqraQppR8=; b=Mocgp8/iQWGotZKpcfL/ yddC+mgDxjhdbNmQ/rl8EZcvNE13xHKKfLujAHbHnBWgaeyoN847EPOLfIGG+zzg Rc6saTzh68u/2liP7pG260PHL5NLxHnJDWKrvWoyPknuThyFmgoTueYYw//v5knZ jS/26BXzl4UF0YD7JGJOjqs= Received: (qmail 31289 invoked by alias); 12 Nov 2013 20:31:10 -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 31275 invoked by uid 89); 12 Nov 2013 20:31:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL, BAYES_50, RDNS_NONE, SPF_HELO_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; Tue, 12 Nov 2013 20:31:08 +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 rACKV00f002239 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 12 Nov 2013 15:31:00 -0500 Received: from [10.10.56.186] (vpn-56-186.rdu2.redhat.com [10.10.56.186]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id rACKUxm2024519; Tue, 12 Nov 2013 15:31:00 -0500 Message-ID: <52829003.7020604@redhat.com> Date: Tue, 12 Nov 2013 15:30:59 -0500 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: Ian Lance Taylor , gcc-patches Subject: [patch] go front end changes to fix compilation break X-IsSubscribed: yes Hey Ian, My latest set of changes (which I just checked in as revision204717) to restructuring the gimple include files breaks go. It requires a minor change to the go front end in order for it to compile... patch attached: Andrew 2013-11-12 Andrew MacLeod * go/gofrontend/expressions.cc: Include gimplify.h. * go/gofrontend/gogo-tree.cc: Likewise. * go/gofrontend/types.cc: Likewise. Index: go/gofrontend/expressions.cc =================================================================== *** go/gofrontend/expressions.cc (revision 204716) --- go/gofrontend/expressions.cc (working copy) *************** *** 12,17 **** --- 12,18 ---- #include "intl.h" #include "tree.h" #include "gimple.h" + #include "gimplify.h" #include "tree-iterator.h" #include "convert.h" #include "real.h" Index: go/gofrontend/gogo-tree.cc =================================================================== *** go/gofrontend/gogo-tree.cc (revision 204716) --- go/gofrontend/gogo-tree.cc (working copy) *************** *** 9,14 **** --- 9,15 ---- #include "toplev.h" #include "tree.h" #include "gimple.h" + #include "gimplify.h" #include "tree-iterator.h" #include "cgraph.h" #include "langhooks.h" Index: go/gofrontend/types.cc =================================================================== *** go/gofrontend/types.cc (revision 204716) --- go/gofrontend/types.cc (working copy) *************** *** 10,15 **** --- 10,16 ---- #include "intl.h" #include "tree.h" #include "gimple.h" + #include "gimplify.h" #include "real.h" #include "convert.h"