From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1534) id 6072E3858D1E; Thu, 8 Sep 2022 12:25:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6072E3858D1E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1662639924; bh=FO5/tijlJYuipIcDR89k5Oo6UJmvzDU8ut8iJ5KXhZI=; h=From:To:Subject:Date:From; b=fqN90Xvi9Og49vg+gmH+SUZ+eWeew7/CtOizleq1YUwMOYPXcOtid1s1K2kjs4n+G C0S24h6aONnqAg81VEiNvrA5Qi2Awqj5CZLuo+IMURbo7svtX6zoUHA78qYuLprGiV wLzoUUE3V7jf6oDDcsXqlq7Xa7tr0eIHzmV7fqIk= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Tobias Burnus To: gcc-cvs@gcc.gnu.org Subject: [gcc/devel/omp/gcc-12] libgomp: Clarify that omp_display_env is fully implemented X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/devel/omp/gcc-12 X-Git-Oldrev: 753cb3a062bbde75bf0073c42c71fe933c3a6cae X-Git-Newrev: b79c973bddadb6ac8103c73a85025c997576415d Message-Id: <20220908122524.6072E3858D1E@sourceware.org> Date: Thu, 8 Sep 2022 12:25:24 +0000 (GMT) List-Id: https://gcc.gnu.org/g:b79c973bddadb6ac8103c73a85025c997576415d commit b79c973bddadb6ac8103c73a85025c997576415d Author: Jakub Jelinek Date: Thu Sep 8 14:01:14 2022 +0200 libgomp: Clarify that omp_display_env is fully implemented OpenMP 5.2 added "When called from within a target region the effect is unspecified." restriction to omp_display_env, so it is ok not to support it in target regions (worst case we could add an empty implementation or one with __builtin_trap in there). 2022-05-17 Jakub Jelinek * libgomp.texi (OpenMP 5.1): Remove "Not inside target regions" comment for omp_display_env feature. (cherry picked from commit 741478ed3ed51658af476bccbc198da931e41d44) Diff: --- libgomp/ChangeLog.omp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libgomp/ChangeLog.omp b/libgomp/ChangeLog.omp index acbcd39cb6d..b5075dfec57 100644 --- a/libgomp/ChangeLog.omp +++ b/libgomp/ChangeLog.omp @@ -1,3 +1,11 @@ +2022-09-08 Tobias Burnus + + Backport from mainline: + 2022-05-17 Jakub Jelinek + + * libgomp.texi (OpenMP 5.1): Remove "Not inside target regions" + comment for omp_display_env feature. + 2022-09-05 Tobias Burnus Backport from mainline: