From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13645 invoked by alias); 11 Nov 2015 17:29:48 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 13635 invoked by uid 89); 11 Nov 2015 17:29:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 11 Nov 2015 17:29:47 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 0282AC100446; Wed, 11 Nov 2015 17:29:46 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-116-34.ams2.redhat.com [10.36.116.34]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tABHTirL019520 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 11 Nov 2015 12:29:45 -0500 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id tABHTgYP000408; Wed, 11 Nov 2015 18:29:43 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id tABHTflP000407; Wed, 11 Nov 2015 18:29:41 +0100 Date: Wed, 11 Nov 2015 17:29:00 -0000 From: Jakub Jelinek To: Thomas Schwinge Cc: James Norris , "Joseph S. Myers" , GCC Patches Subject: Re: [OpenACC] declare directive Message-ID: <20151111172941.GO5675@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <5638E164.5010207@codesourcery.com> <87611h1zi7.fsf@kepler.schwinge.homeip.net> <563CD07A.3000404@codesourcery.com> <20151106190352.GG5675@tucnak.redhat.com> <563F6BA5.9020606@codesourcery.com> <5640C35C.9030907@codesourcery.com> <20151109162117.GU5675@tucnak.redhat.com> <56412830.9030100@codesourcery.com> <20151111083233.GE5675@tucnak.redhat.com> <87h9ksvofe.fsf@kepler.schwinge.homeip.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87h9ksvofe.fsf@kepler.schwinge.homeip.net> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-11/txt/msg01405.txt.bz2 On Wed, Nov 11, 2015 at 11:08:21AM +0100, Thomas Schwinge wrote: > Hi! > > On Wed, 11 Nov 2015 09:32:33 +0100, Jakub Jelinek wrote: > > On Mon, Nov 09, 2015 at 05:11:44PM -0600, James Norris wrote: > > > diff --git a/gcc/c-family/c-pragma.h b/gcc/c-family/c-pragma.h > > > index 953c4e3..c6a2981 100644 > > > --- a/gcc/c-family/c-pragma.h > > > +++ b/gcc/c-family/c-pragma.h > > > @@ -30,6 +30,7 @@ enum pragma_kind { > > > PRAGMA_OACC_ATOMIC, > > > PRAGMA_OACC_CACHE, > > > PRAGMA_OACC_DATA, > > > + PRAGMA_OACC_DECLARE, > > > PRAGMA_OACC_ENTER_DATA, > > > PRAGMA_OACC_EXIT_DATA, > > > PRAGMA_OACC_KERNELS, > > > > This change will make PR68271 even worse, so would be really nice to > > get that fixed first. > > "Would be really nice" means that you're asking us to work on and resolve > PR68271 before installing this patch? Dominique has committed a quick hack for this, so it is not urgent, but would be nice to get it resolved. If somebody from Mentor gets to that, perfect, otherwise I (or somebody else) will get to that eventually. Jakub