diff options
author | Krzysztof Parzyszek <Krzysztof.Parzyszek@amd.com> | 2024-07-11 08:07:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-11 08:07:58 -0500 |
commit | 81cdf9472c347adeee91f39f661e06da77902c93 (patch) | |
tree | 34db132de15dea69830637e8e672f7b22f78a1e5 /lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | |
parent | a3913a19185e3513a317aab792e85d5c50ef0242 (diff) | |
download | llvm-81cdf9472c347adeee91f39f661e06da77902c93.zip llvm-81cdf9472c347adeee91f39f661e06da77902c93.tar.gz llvm-81cdf9472c347adeee91f39f661e06da77902c93.tar.bz2 |
[clang][OpenMP] Fix region nesting check for `scan` directive (#98386)
The previous check was inconsistent. For example, it would allow
```
#pragma omp target
#pragma omp parallel for
for (...) {
#pragma omp scan
}
```
but not
```
#pragma omp target parallel for
for (...) {
#pragma omp scan
}
```
Make the check conform to the wording on the specification.
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp')
0 files changed, 0 insertions, 0 deletions