From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12749 invoked by alias); 18 Oct 2005 09:10:40 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 12723 invoked by uid 22791); 18 Oct 2005 09:10:37 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Tue, 18 Oct 2005 09:10:37 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j9I9Aau0027837; Tue, 18 Oct 2005 05:10:36 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j9I9AZV22443; Tue, 18 Oct 2005 05:10:35 -0400 Received: from ballpeen.sfbay.redhat.com (ballpeen.sfbay.redhat.com [172.16.24.33]) by potter.sfbay.redhat.com (8.12.8/8.12.8) with ESMTP id j9I9AY3P014101; Tue, 18 Oct 2005 05:10:34 -0400 Received: from ballpeen.sfbay.redhat.com (ballpeen.sfbay.redhat.com [127.0.0.1]) by ballpeen.sfbay.redhat.com (8.13.4/8.13.1) with ESMTP id j9I9AXO2011507; Tue, 18 Oct 2005 02:10:33 -0700 Received: (from rth@localhost) by ballpeen.sfbay.redhat.com (8.13.4/8.13.4/Submit) id j9I9AXa2011506; Tue, 18 Oct 2005 02:10:33 -0700 Date: Tue, 18 Oct 2005 09:10:00 -0000 From: Richard Henderson To: Jakub Jelinek Cc: gcc-patches@gcc.gnu.org, fortran@gcc.gnu.org Subject: Re: [gomp] Add langhook, so that Fortran can privatize variables by reference Message-ID: <20051018091033.GC11094@redhat.com> Mail-Followup-To: Richard Henderson , Jakub Jelinek , gcc-patches@gcc.gnu.org, fortran@gcc.gnu.org References: <20051018070140.GB16034@devserv.devel.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051018070140.GB16034@devserv.devel.redhat.com> User-Agent: Mutt/1.4.2.1i X-SW-Source: 2005-10/txt/msg01033.txt.bz2 On Tue, Oct 18, 2005 at 03:01:40AM -0400, Jakub Jelinek wrote: > +bool > +lhd_omp_privatize_by_reference (tree decl ATTRIBUTE_UNUSED) > +{ > + return false; > +} Preferably, hook_bool_tree_false. r~