From patchwork Tue Nov 19 13:36: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: 292426 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 8AEFE2C0084 for ; Wed, 20 Nov 2013 00:38:32 +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:content-type; q=dns; s=default; b=dvUYauQtX8sOASbYi2VqApm+X2qBLb0frIGShs7YmX+ QfFDsmfvAjszCz8vHmvzOrSemDULse2Qmzw5c/XsMNNYQx89c9hiEptu9cq02cVS 53aqemFvVIlqfRHNehVrOPkHPPxkP+FgLPSci7DIwTocMYVJ/2zZGLLr84vWpgz4 = 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:content-type; s=default; bh=Pce8IRaN3ZmWzCNkhq5gIZEhPqQ=; b=Q+JlJefSOVmdwqpqW Gdwj9AEGhAVBGOZieCdbvRBOg5+4zcOAlGVgzp8waV+657z80SJpModeMkiSdqni Eahcm1vTygb6IZU9Xu4NiARpLKO65QKT7VV/nMesY4sub3Fm6ND3izSeLEuk75sr IqC+QCuG9En9P4cdCmh/Gj2mlQ= Received: (qmail 9321 invoked by alias); 19 Nov 2013 13:38:04 -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 9305 invoked by uid 89); 19 Nov 2013 13:38:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_40, RDNS_NONE, SPF_PASS 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, 19 Nov 2013 13:36:23 +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 rAJDaFZ3011185 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 19 Nov 2013 08:36:15 -0500 Received: from [10.10.53.147] (vpn-53-147.rdu2.redhat.com [10.10.53.147]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id rAJDaE0k011244; Tue, 19 Nov 2013 08:36:15 -0500 Message-ID: <528B694E.20907@redhat.com> Date: Tue, 19 Nov 2013 08:36:14 -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: gcc-patches CC: Diego Novillo Subject: [patch] fix graphite build X-IsSubscribed: yes graphite-sese-to-poly.c needs expr.h to compile. Fixed thusly and checked in as revision 205027. Andrew * graphite-sese-to-poly.c: Include expr.h. Index: graphite-sese-to-poly.c =================================================================== *** graphite-sese-to-poly.c (revision 205024) --- graphite-sese-to-poly.c (working copy) *************** along with GCC; see the file COPYING3. *** 58,63 **** --- 58,64 ---- #include "tree-ssa-propagate.h" #ifdef HAVE_cloog + #include "expr.h" #include "graphite-poly.h" #include "graphite-sese-to-poly.h"