From patchwork Sat Aug 7 10:26:10 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jack Howarth X-Patchwork-Id: 61176 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 8A3BDB6F14 for ; Sat, 7 Aug 2010 20:26:18 +1000 (EST) Received: (qmail 20940 invoked by alias); 7 Aug 2010 10:26:17 -0000 Received: (qmail 20930 invoked by uid 22791); 7 Aug 2010 10:26:16 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from bromo.med.uc.edu (HELO bromo.med.uc.edu) (129.137.3.146) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Sat, 07 Aug 2010 10:26:12 +0000 Received: from bromo.med.uc.edu (localhost.localdomain [127.0.0.1]) by bromo.med.uc.edu (Postfix) with ESMTP id CA39FB005C; Sat, 7 Aug 2010 06:26:10 -0400 (EDT) Received: (from howarth@localhost) by bromo.med.uc.edu (8.14.3/8.14.3/Submit) id o77AQA8O030284; Sat, 7 Aug 2010 06:26:10 -0400 Date: Sat, 7 Aug 2010 06:26:10 -0400 From: Jack Howarth To: Sebastian Pop Cc: gcc-patches@gcc.gnu.org, Tobias Grosser , gcc-graphite Subject: Re: [PATCH 00/65] Merge from the Graphite branch to trunk Message-ID: <20100807102610.GA30237@bromo.med.uc.edu> References: <1280780438-17543-1-git-send-email-sebpop@gmail.com> <20100803025216.GA25806@bromo.med.uc.edu> <20100803025534.GA25850@bromo.med.uc.edu> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) 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 Sebastian, Complete testsuite results are posted at... http://gcc.gnu.org/ml/gcc-testresults/2010-08/msg00666.html for the graphite merge built with... I'll start filing PRs for these compiler ICE's from invoking -fgraphite-identity as soon as you commit the merge to gcc trunk. Jack Index: opts.c =================================================================== --- opts.c (revision 162966) +++ opts.c (working copy) @@ -781,6 +781,9 @@ /* -O2 optimizations. */ opt2 = (optimize >= 2); +#ifdef HAVE_cloog + flag_graphite_identity = opt2; +#endif flag_inline_small_functions = opt2; flag_indirect_inlining = opt2; flag_partial_inlining = opt2;