diff options
author | Jakub Jelinek <jakub@redhat.com> | 2025-02-24 09:25:34 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2025-02-24 09:25:34 +0100 |
commit | 27ebd2a55cd373542977b21631b6b0919e703733 (patch) | |
tree | 984be68bb09f9dae65be80bd887df842fc795b09 /gcc/testsuite/c-c++-common/gomp | |
parent | 0d590d21586edbb9c62ce3db92794d93faf7ed34 (diff) | |
download | gcc-27ebd2a55cd373542977b21631b6b0919e703733.zip gcc-27ebd2a55cd373542977b21631b6b0919e703733.tar.gz gcc-27ebd2a55cd373542977b21631b6b0919e703733.tar.bz2 |
openmp: Fix diagnostics typo [PR118993]
There is a typo in one of the OpenMP gimplification diagnostics messages.
The following patch fixes that and adjusts tests which just copied that
message including typo to dg-warning regexps in 2 tests.
2025-02-24 Jakub Jelinek <jakub@redhat.com>
PR middle-end/118993
* gimplify.cc (gimplify_scan_omp_clauses): Fix diagnostics typo,
undfined -> undefined.
* c-c++-common/gomp/allocate-18.c: Adjust dg-warning regex for
diagnostics typo fix.
* gfortran.dg/gomp/allocate-clause.f90: Likewise.
Diffstat (limited to 'gcc/testsuite/c-c++-common/gomp')
-rw-r--r-- | gcc/testsuite/c-c++-common/gomp/allocate-18.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/c-c++-common/gomp/allocate-18.c b/gcc/testsuite/c-c++-common/gomp/allocate-18.c index 93c5aca..49dc60f 100644 --- a/gcc/testsuite/c-c++-common/gomp/allocate-18.c +++ b/gcc/testsuite/c-c++-common/gomp/allocate-18.c @@ -36,16 +36,16 @@ test1 () x[0] = 1; #pragma omp target allocate(omp_thread_mem_alloc: x) firstprivate(x) /* uses_allocators(omp_thread_mem_alloc) */ - /* { dg-warning "allocator with access trait set to 'thread' results in undfined behavior for 'target' directive \\\[-Wopenmp\\\]" "" { target *-*-* } .-1 } */ + /* { dg-warning "allocator with access trait set to 'thread' results in undefined behavior for 'target' directive \\\[-Wopenmp\\\]" "" { target *-*-* } .-1 } */ x[0] = 1; #pragma omp taskloop allocate(omp_thread_mem_alloc: x) firstprivate(x) - /* { dg-warning "allocator with access trait set to 'thread' results in undfined behavior for 'taskloop' directive \\\[-Wopenmp\\\]" "" { target *-*-* } .-1 } */ + /* { dg-warning "allocator with access trait set to 'thread' results in undefined behavior for 'taskloop' directive \\\[-Wopenmp\\\]" "" { target *-*-* } .-1 } */ for (int i = 0; i < 5; i++) x[i] = i; #pragma omp parallel master taskloop simd allocate(omp_thread_mem_alloc: x) firstprivate(x) - /* { dg-warning "allocator with access trait set to 'thread' results in undfined behavior for 'taskloop' directive \\\[-Wopenmp\\\]" "" { target *-*-* } .-1 } */ + /* { dg-warning "allocator with access trait set to 'thread' results in undefined behavior for 'taskloop' directive \\\[-Wopenmp\\\]" "" { target *-*-* } .-1 } */ for (int i = 0; i < 5; i++) x[i] = i; @@ -53,7 +53,7 @@ test1 () #pragma omp masked { #pragma omp task allocate(omp_thread_mem_alloc: x) firstprivate(x) - /* { dg-warning "allocator with access trait set to 'thread' results in undfined behavior for 'task' directive \\\[-Wopenmp\\\]" "" { target *-*-* } .-1 } */ + /* { dg-warning "allocator with access trait set to 'thread' results in undefined behavior for 'task' directive \\\[-Wopenmp\\\]" "" { target *-*-* } .-1 } */ x[0] = 1; } } |