Files
clang-p2996/clang/test/OpenMP/Inputs
Krzysztof Parzyszek 81cdf9472c [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.
2024-07-11 08:07:58 -05:00
..