From patchwork Wed Aug 11 18:30:11 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Andreas_Simb=C3=BCrger?= X-Patchwork-Id: 61499 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]) by ozlabs.org (Postfix) with SMTP id BBA05B70DF for ; Thu, 12 Aug 2010 04:30:53 +1000 (EST) Received: (qmail 15804 invoked by alias); 11 Aug 2010 18:30:48 -0000 Received: (qmail 15736 invoked by uid 22791); 11 Aug 2010 18:30:47 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mail-ew0-f47.google.com (HELO mail-ew0-f47.google.com) (209.85.215.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 11 Aug 2010 18:30:43 +0000 Received: by ewy7 with SMTP id 7so263239ewy.20 for ; Wed, 11 Aug 2010 11:30:40 -0700 (PDT) Received: by 10.213.28.134 with SMTP id m6mr15486723ebc.70.1281551440430; Wed, 11 Aug 2010 11:30:40 -0700 (PDT) Received: from simbuerg@googlemail.com (dslb-088-075-197-233.pools.arcor-ip.net [88.75.197.233]) by mx.google.com with ESMTPS id v59sm613516eeh.10.2010.08.11.11.30.38 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 11 Aug 2010 11:30:39 -0700 (PDT) Received: by simbuerg@googlemail.com (sSMTP sendmail emulation); Wed, 11 Aug 2010 20:30:25 +0200 From: =?UTF-8?q?Andreas=20Simb=C3=BCrger?= To: gcc-graphite@googlegroups.com Cc: gcc-patches@gcc.gnu.org, =?UTF-8?q?Andreas=20Simb=C3=BCrger?= Subject: [PATCH 2/3] Fix include order to avoid failed compilation on CLOOG_ORG. Date: Wed, 11 Aug 2010 20:30:11 +0200 Message-Id: <1281551412-9101-3-git-send-email-simbuerg@googlemail.com> In-Reply-To: References: X-IsSubscribed: yes 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 2010-08-11 Andreas Simbuerger * graphite-poly.c: Change include order. --- gcc/ChangeLog.graphite | 4 ++++ gcc/graphite-poly.c | 2 +- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 486cd37..54c33ef 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,5 +1,9 @@ 2010-08-11 Andreas Simbuerger + * graphite-poly.c: Change include order. + +2010-08-11 Andreas Simbuerger + * graphite-cloog-compat.h (cloog_matrix_ncolumns): New. (cloog_matrix_nrows): New. diff --git a/gcc/graphite-poly.c b/gcc/graphite-poly.c index c1ac69e..24911d6 100644 --- a/gcc/graphite-poly.c +++ b/gcc/graphite-poly.c @@ -44,7 +44,6 @@ along with GCC; see the file COPYING3. If not see #include "pointer-set.h" #include "gimple.h" #include "params.h" -#include "graphite-cloog-util.h" #ifdef HAVE_cloog #include "ppl_c.h" @@ -53,6 +52,7 @@ along with GCC; see the file COPYING3. If not see #include "graphite.h" #include "graphite-poly.h" #include "graphite-dependences.h" +#include "graphite-cloog-util.h" /* Return the maximal loop depth in SCOP. */