From 9d71955f383058f17362c1960bdf8ba2b8c74857 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 16 Feb 2023 12:10:19 +0100 Subject: [PATCH] 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. --- .../testsuite/libgomp.fortran/target-nowait-array-section.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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