File tree 2 files changed +37
-2
lines changed
2 files changed +37
-2
lines changed Original file line number Diff line number Diff line change @@ -1712,6 +1712,28 @@ void OmpStructureChecker::Enter(const parser::OpenMPDeclarativeAllocate &x) {
1712
1712
const auto &objectList{std::get<parser::OmpObjectList>(x.t )};
1713
1713
PushContextAndClauseSets (dir.source , llvm::omp::Directive::OMPD_allocate);
1714
1714
const auto &clauseList{std::get<parser::OmpClauseList>(x.t )};
1715
+ SymbolSourceMap currSymbols;
1716
+ GetSymbolsInObjectList (objectList, currSymbols);
1717
+ for (auto &[symbol, source] : currSymbols) {
1718
+ if (IsPointer (*symbol)) {
1719
+ context_.Say (source,
1720
+ " List item '%s' in ALLOCATE directive must not have POINTER "
1721
+ " attribute" _err_en_US,
1722
+ source.ToString ());
1723
+ }
1724
+ if (IsDummy (*symbol)) {
1725
+ context_.Say (source,
1726
+ " List item '%s' in ALLOCATE directive must not be a dummy "
1727
+ " argument" _err_en_US,
1728
+ source.ToString ());
1729
+ }
1730
+ if (symbol->GetUltimate ().has <AssocEntityDetails>()) {
1731
+ context_.Say (source,
1732
+ " List item '%s' in ALLOCATE directive must not be an associate "
1733
+ " name" _err_en_US,
1734
+ source.ToString ());
1735
+ }
1736
+ }
1715
1737
for (const auto &clause : clauseList.v ) {
1716
1738
CheckAlignValue (clause);
1717
1739
}
Original file line number Diff line number Diff line change 4
4
! OpenMP Version 5.0
5
5
! 2.11.3 allocate Directive
6
6
! Only the allocator clause is allowed on the allocate directive
7
- subroutine allocate ()
7
+ ! List item in ALLOCATE directive must not be a dummy argument
8
+ ! List item in ALLOCATE directive must not have POINTER attribute
9
+ ! List item in ALLOCATE directive must not be a associate name
10
+ subroutine allocate (z )
8
11
use omp_lib
12
+ use iso_c_binding
9
13
10
- integer :: x, y
14
+ type (c_ptr), pointer :: p
15
+ integer :: x, y, z
11
16
17
+ associate (a = > x)
12
18
! $omp allocate(x) allocator(omp_default_mem_alloc)
13
19
14
20
! ERROR: PRIVATE clause is not allowed on the ALLOCATE directive
15
21
! $omp allocate(y) private(y)
22
+ ! ERROR: List item 'z' in ALLOCATE directive must not be a dummy argument
23
+ ! $omp allocate(z)
24
+ ! ERROR: List item 'p' in ALLOCATE directive must not have POINTER attribute
25
+ ! $omp allocate(p)
26
+ ! ERROR: List item 'a' in ALLOCATE directive must not be an associate name
27
+ ! $omp allocate(a)
28
+ end associate
16
29
end subroutine allocate
You can’t perform that action at this time.
0 commit comments