From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1534) id 32DEF3858D33; Thu, 16 Feb 2023 11:36:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 32DEF3858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676547403; bh=VpZlIF6koAOtqM1OVmxj0X81sqmz4pconZMLaDC7z/M=; h=From:To:Subject:Date:From; b=CkM7shhSof3YvObOsYqpSVOpC9Ila3PrGory4QPAjt8P2n7oWLAyLr3b1dQSc1X0c 0x7TV9I62IQwyyxPc/QYvpKC2VwbK3Aytoe17lHNdKjfMI+0sdVNtPqbdSMR2OCHly /DD+FD5ZJniFTl48KoDYaa27cBN2fA/Jl3mLvTfc= 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: Fix comment typo X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/devel/omp/gcc-12 X-Git-Oldrev: bbda035ee62ba4db21356136c97e9d83a97ba7d1 X-Git-Newrev: ed3e203c6eeb04a1aca93cb9e6020a5b89247870 Message-Id: <20230216113643.32DEF3858D33@sourceware.org> Date: Thu, 16 Feb 2023 11:36:43 +0000 (GMT) List-Id: https://gcc.gnu.org/g:ed3e203c6eeb04a1aca93cb9e6020a5b89247870 commit ed3e203c6eeb04a1aca93cb9e6020a5b89247870 Author: Jakub Jelinek Date: Thu Feb 16 12:32:00 2023 +0100 libgomp: Fix comment typo I saw FAIL: libgomp.fortran/target-nowait-array-section.f90 -O execution test in my last x86_64-linux bootstrap. From quick skimming, it might be just unreliable test, which assumes that asynchronous execution wouldn't produce ordered sequence, but can't it happen even with asynchronous execution? That said, while skimming the test, I've noticed a comment typo and this patch fixes that up. 2023-02-16 Jakub Jelinek * testsuite/libgomp.fortran/target-nowait-array-section.f90: Fix comment typo and improve its wording. (cherry picked from commit 9d71955f383058f17362c1960bdf8ba2b8c74857) Diff: --- libgomp/ChangeLog.omp | 8 ++++++++ libgomp/testsuite/libgomp.fortran/target-nowait-array-section.f90 | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/libgomp/ChangeLog.omp b/libgomp/ChangeLog.omp index 5257ee00e0c..5be77242a41 100644 --- a/libgomp/ChangeLog.omp +++ b/libgomp/ChangeLog.omp @@ -1,3 +1,11 @@ +2023-02-16 Tobias Burnus + + Backported from master: + 2023-02-16 Jakub Jelinek + + * testsuite/libgomp.fortran/target-nowait-array-section.f90: Fix + comment typo and improve its wording. + 2023-02-15 Thomas Schwinge * testsuite/libgomp.c-c++-common/target-present-1.c: Fix. diff --git a/libgomp/testsuite/libgomp.fortran/target-nowait-array-section.f90 b/libgomp/testsuite/libgomp.fortran/target-nowait-array-section.f90 index 3613b731676..783ad4f6ac1 100644 --- a/libgomp/testsuite/libgomp.fortran/target-nowait-array-section.f90 +++ b/libgomp/testsuite/libgomp.fortran/target-nowait-array-section.f90 @@ -1,4 +1,4 @@ -! Runs the the target region asynchrolously and checks for it +! Run the target region asynchronously and check it ! ! Note that map(alloc: work(:, i)) + nowait should be safe ! given that a nondescriptor array is used. However, it still