From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa1.mentor.iphmx.com (esa1.mentor.iphmx.com [68.232.129.153]) by sourceware.org (Postfix) with ESMTPS id A59713857C7B; Mon, 26 Apr 2021 16:17:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A59713857C7B Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=Tobias_Burnus@mentor.com IronPort-SDR: EeAwoLwt3nw1WaqDKAturG0heCtS85FphqNkJLc+2RgeJ7YwT7v5pJzhJJPcyvtyeqWUnNnATP V5LlKYRZqu7uSImpD4FQH1MMUwgazx2blNzFv/PHlq+bVBPzvUk5mmA3FyZDDw642SZTz/VPZ2 geu0er2Of/lmQu6Ih73AktQ4C61TgBnLGTjZx0ew0CUYiKh9zzA+tPo8XxecLFN3TgyB4O7A6+ 9ANKVjl4f+l9wAG79xYVcm9BEeJGCZN/6W2shjcTskxvbl7BsxQDWK/FWS4nHgBBbNsQP+SSJr If0= X-IronPort-AV: E=Sophos;i="5.82,252,1613462400"; d="diff'?scan'208";a="62907171" Received: from orw-gwy-02-in.mentorg.com ([192.94.38.167]) by esa1.mentor.iphmx.com with ESMTP; 26 Apr 2021 08:17:01 -0800 IronPort-SDR: dwE9XPreL2xegXikIKhiyEosk7p8boowjxAu5TiYBSAeHqWSx/kLC72NKBddHUyXW4Kg7+43v9 5FETuRgpXVnGvmwIl+W7/511PH9u1yPXLQPIu/6JvN7HG2dyZo5dn6a5oahR84KZ2srWf6scTU iksrOMFsFUG6fb/Fon9K/vVVXs48ZLhQui7ICa/ykjlf07uY+I39MFGF7p+eBPgG3uTzAzyhgv qDXUqnlKRPKQv7CFSDZkTMOVeL1NvJnxHjjv5wLg1hGHW8fObJNYInbTZcP+SXtBcklsSqD7KF SWI= To: gcc-patches , fortran , Gerald Pfeifer , Jakub Jelinek , Thomas Schwinge From: Tobias Burnus Subject: [wwwdocs, patch] gcc-12/changes.html: OpenMP (depobj/mutexinoutset for depend), OpenACC (-Wopenacc-parallelism) Message-ID: <842c1337-a117-f260-bbb4-4e7f5a03546f@codesourcery.com> Date: Mon, 26 Apr 2021 18:16:55 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.0 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------84172AA73B051A850B4BA1CB" Content-Language: en-US X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: SVR-IES-MBX-07.mgc.mentorg.com (139.181.222.7) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: fortran@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Fortran mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Apr 2021 16:17:04 -0000 --------------84172AA73B051A850B4BA1CB Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: quoted-printable Hi all, this patch documents a new OpenMP feature (many more to be added) in GCC 12= . And it documents a new flag for OpenACC. Comments? Wording suggestions? I think for OpenMP, the sentence will be modified several times before the release :-) Tobias ----------------- Mentor Graphics (Deutschland) GmbH, Arnulfstrasse 201, 80634 M=C3=BCnchen R= egistergericht M=C3=BCnchen HRB 106955, Gesch=C3=A4ftsf=C3=BChrer: Thomas H= eurung, Frank Th=C3=BCrauf --------------84172AA73B051A850B4BA1CB Content-Type: text/x-patch; charset="UTF-8"; name="gcc12.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="gcc12.diff" diff --git a/htdocs/gcc-12/changes.html b/htdocs/gcc-12/changes.html index 8f257e87..1022b5eb 100644 --- a/htdocs/gcc-12/changes.html +++ b/htdocs/gcc-12/changes.html @@ -40,6 +40,18 @@ a work-in-progress.

New Languages and Language specific improvements

+
    +
  • For Fortran, OpenMP 5.0 support has been extended for following features + which were before only available in C and C++: depobj + and mutexinoutset can now also be used with the + depend clause. +
  • +
  • The new warning flag -Wopenacc-parallelism was added for + OpenACC, which warns about potentially suboptimal choices related to + OpenACC parallelism. +
  • +
+ --------------84172AA73B051A850B4BA1CB--