From patchwork Tue Apr 30 16:09:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jakub Jelinek X-Patchwork-Id: 240657 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id D5DBE2C009B for ; Wed, 1 May 2013 02:09:30 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:reply-to:mime-version:content-type; q=dns; s=default; b=Ht7clRf71Ux0xU4XrUqQelvZMQJV2FfspmQWZ/KY4vB 47OXe4wCdBJQSwc0jMm2zJD+xSmweIJfzcV2ktrXdNk2+xvOBDAusHV55KZ6vewN XbVx8AmL+E1MdG/VCdxL8jtlYmlUOB7fMiIqG+HKGFpVKCnBQEdDP9RNCBy7ZWMs = 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:date :from:to:subject:message-id:reply-to:mime-version:content-type; s=default; bh=GEkijasecyEVmpS9M6wWkZ/u9ng=; b=ilT+8FiIqHyNypdPh xViiNieSLAPWrq+sL0P5ma6lVlAqXSnHvxvYSqbyFhO9lD2VbFmEa6yVbqPh2Osi ubWaWlPh2ySGZPgXXCqsTKbny5g7KzswgdQwn3LZj1bJksY/T3TFc1d107ITFpwI 0pixNC7Jn2cLcH99n48jSYSXXw= Received: (qmail 18718 invoked by alias); 30 Apr 2013 16:09:23 -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 18707 invoked by uid 89); 30 Apr 2013 16:09:23 -0000 X-Spam-SWARE-Status: No, score=-5.6 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 30 Apr 2013 16:09:20 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3UG9Jvc014465 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 30 Apr 2013 12:09:19 -0400 Received: from zalov.cz (vpn-56-217.rdu2.redhat.com [10.10.56.217]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r3UG9HGp002083 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 30 Apr 2013 12:09:19 -0400 Received: from zalov.cz (localhost [127.0.0.1]) by zalov.cz (8.14.5/8.14.5) with ESMTP id r3UG9Gc7028379 for ; Tue, 30 Apr 2013 18:09:17 +0200 Received: (from jakub@localhost) by zalov.cz (8.14.5/8.14.5/Submit) id r3UG9FbF028378 for gcc-patches@gcc.gnu.org; Tue, 30 Apr 2013 18:09:15 +0200 Date: Tue, 30 Apr 2013 18:09:15 +0200 From: Jakub Jelinek To: gcc-patches@gcc.gnu.org Subject: [gomp4] Tiny c-family addition Message-ID: <20130430160915.GQ28963@tucnak.redhat.com> Reply-To: Jakub Jelinek MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Hi! Just one tiny omission (but neither of the parsers can parse the accelerator stuff yet). 2013-04-30 Jakub Jelinek * c-pragma.c (omp_pragmas): Add PRAGMA_OMP_DISTRIBUTE. Jakub --- gcc/c-family/c-pragma.c.jj 2013-03-27 13:01:09.000000000 +0100 +++ gcc/c-family/c-pragma.c 2013-04-30 15:18:35.473478963 +0200 @@ -1166,6 +1166,7 @@ static const struct omp_pragma_def omp_p { "cancellation", PRAGMA_OMP_CANCELLATION_POINT }, { "critical", PRAGMA_OMP_CRITICAL }, { "declare", PRAGMA_OMP_DECLARE_REDUCTION }, + { "distribute", PRAGMA_OMP_DISTRIBUTE }, { "end", PRAGMA_OMP_END_DECLARE_TARGET }, { "flush", PRAGMA_OMP_FLUSH }, { "for", PRAGMA_OMP_FOR },