diff options
author | Jakub Jelinek <jakub@redhat.com> | 2023-02-16 12:10:19 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2023-02-16 12:10:19 +0100 |
commit | 9d71955f383058f17362c1960bdf8ba2b8c74857 (patch) | |
tree | 508cd88b0b5c94825774380c05e5e7f998c94922 /libgomp/testsuite/libgomp.fortran | |
parent | dc79eba72b4d16180e500eba336f511a485a8496 (diff) | |
download | gcc-9d71955f383058f17362c1960bdf8ba2b8c74857.zip gcc-9d71955f383058f17362c1960bdf8ba2b8c74857.tar.gz gcc-9d71955f383058f17362c1960bdf8ba2b8c74857.tar.bz2 |
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 <jakub@redhat.com>
* testsuite/libgomp.fortran/target-nowait-array-section.f90: Fix
comment typo and improve its wording.
Diffstat (limited to 'libgomp/testsuite/libgomp.fortran')
-rw-r--r-- | libgomp/testsuite/libgomp.fortran/target-nowait-array-section.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/testsuite/libgomp.fortran/target-nowait-array-section.f90 b/libgomp/testsuite/libgomp.fortran/target-nowait-array-section.f90 index 3613b73..783ad4f 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 |