summaryrefslogtreecommitdiff
path: root/clang/test/OpenMP/parallel_master_taskloop_simd_linear_messages.cpp
AgeCommit message (Collapse)Author
2025-04-15[clang] consistently quote expressions in diagnostics (#134769)Matheus Izvekov
2024-11-18[clang] Replace "can't" and "can not" in diagnostics with "cannot" (#116623)Krzysztof Parzyszek
See https://discourse.llvm.org/t/cant-cannot-can-not-in-diagnostic-messages/83171
2023-10-25[OpenMP 5.2] Deprecate old syntax of linear clause (#70152)Fazlay Rabbi
The syntax of the linear clause that specifies its argument and linear-modifier as linear-modifier(list) was deprecated since OpenMP 5.2 and the step modifier was added for specifying the linear step. Reference: OpenMP 5.2 Spec, Page 627, Line 15
2023-10-24[OpenMP 5.2] Initial parsing and semantic analysis suppport for 'step' ↵Fazlay Rabbi
modifier on 'linear' clause Reference: (1) OpenMP 5.2 Specification - Seciton 5.4.6 Differential revision: https://reviews.llvm.org/D159546
2020-05-07[OPENMP]Consider 'omp_null_allocator' as a predefined allocator.Alexey Bataev
Summary: omp.h header file defines omp_null_allocator as a predefined allocator, need to consider it also as a predefined allocator. Reviewers: jdoerfert Subscribers: jholewinski, yaxunl, guansong, cfe-commits, caomhin Tags: #clang Differential Revision: https://reviews.llvm.org/D79186
2019-10-30[OPENMP50]Add support for parallel master taskloop simd directive.Alexey Bataev
Added full support for parallel master taskloop simd directive.